<!doctype html>
{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
<html lang="{{ eccube_config.locale }}">
<head prefix="og: https://ogp.me/ns# fb: https://ogp.me/ns/fb# product: https://ogp.me/ns/product#">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116975419-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116975419-2');
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
{# ===== タイトルタグの設定(カスタマイズ) ===== #}
<title>
{%- if Page.meta_title is defined and Page.meta_title is not empty -%}
{{- Page.meta_title -}}
{%- elseif Page.name is defined and Page.name is not empty -%}
{{- Page.name ~ ' - ' ~ BaseInfo.shop_name -}}
{%- else -%}
{{- BaseInfo.shop_name -}}
{%- endif -%}
</title>
{# ===== タイトルタグ終了 ===== #}
{% if Page.meta_tags is not empty %}
{{ include(template_from_string(Page.meta_tags)) }}
{% else %}
{{ include('meta.twig') }}
{% endif %}
{% if Page.url == "product_detail" %}
<meta name="description" content="{{ include(template_from_string(Product.description_detail)) }}">
<meta name="keywords" content="{{ include(template_from_string(Product.search_word)) }}">
{% elseif Page.url == "product_list" %}
<meta name="description" content="{{ subtitle }}を集めた商品一覧ページです。{{ subtitle }}はこんな方におすすめです。">
<meta name="keywords" content="{{ subtitle }}">
{% else %}
{% if Page.description is not empty %}
<meta name="description" content="{{ Page.description }}">
{% endif %}
{% if Page.keyword is not empty %}
<meta name="keywords" content="{{ Page.keyword }}">
{% endif %}
{% endif %}
{% if Page.author is not empty %}
<meta name="author" content="{{ Page.author }}">
{% endif %}
{% if Page.meta_robots is not empty %}
<meta name="robots" content="{{ Page.meta_robots }}">
{% endif %}
{% block meta_tags %}{% endblock %}
<link rel="icon" href="{{ front_urlpath }}/img/common/favicon.ico">
<link rel="stylesheet" href="{{ front_urlpath }}/css/style.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}">
<link rel="stylesheet" href="{{ front_urlpath }}/css/slick.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}">
<link rel="stylesheet" href="{{ front_urlpath }}/css/default.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}">
<link rel="stylesheet" href="{{ front_urlpath }}/css/my-style.css?v={{ constant('Eccube\\Common\\Constant::VERSION') }}">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!--link rel="stylesheet" href="{{ asset('assets/css/style.css') }}"-->
<script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
{% block stylesheet %}{% endblock %}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="{{ front_urlpath }}/js/vendor/jquery-1.11.3.min.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"><\/script>')</script>
<script src="{{ front_urlpath }}/js/matchHeight/jquery.matchHeight-min.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script>
$(function() {
$.ajaxSetup({
'headers': {
'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
}
});
});
</script>
{# Layout: HEAD #}
{% if Layout.Head %}
{{ include('block.twig', {'Blocks': Layout.Head}) }}
{% endif %}
{# プラグイン用styleseetやmetatagなど #}
{% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
<link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
<link rel="stylesheet" href="{{ asset('assets/css/related_product_plugin.css', 'user_data') }}">
</head>
<body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
{# Layout: BODY_AFTER #}
{% if Layout.BodyAfter %}
{{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
{% endif %}
{% if isMaintenance %}
<div class="ec-maintenanceAlert">
<div>
<div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}"/></div>
{{ 'メンテナンスモードが有効になっています。'|trans }}
</div>
</div>
{% endif %}
<div id="wrapper">
<header id="header">
<div class="container-fluid inner">
{% if Layout.Header %}
{{ include('block.twig', {'Blocks': Layout.Header}) }}
{% endif %}
<p id="btn_menu"><a class="nav-trigger" href="#nav">Menu<span></span></a></p>
</div>
</header>
{% set PageLayout_theme = 'theme_main_only' %}
{% if Layout.ColumnNum == 2 %}
{% set PageLayout_theme = 'theme_side_left' %}
{% elseif Layout.ColumnNum == 3 %}
{% set PageLayout_theme = 'theme_side_both' %}
{% endif %}
<div id="contents" class="{{ PageLayout_theme }}">
<div id="contents_top">
{# ▼TOP COLUMN #}
{% if Layout.ContentsTop %}
{# ▼上ナビ #}
{{ include('block.twig', {'Blocks': Layout.ContentsTop}) }}
{# ▲上ナビ #}
{% endif %}
{# ▲TOP COLUMN #}
</div>
<div class="container-fluid inner">
{# ▼LEFT COLUMN #}
{% if Layout.SideLeft %}
<div id="side_left" class="side">
{# ▼左ナビ #}
{{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
{# ▲左ナビ #}
</div>
{% endif %}
{# ▲LEFT COLUMN #}
<div id="main">
{# ▼メイン上部 #}
{% if Layout.MainTop %}
<div id="main_top">
{{ include('block.twig', {'Blocks': Layout.MainTop}) }}
</div>
{% endif %}
{# ▲メイン上部 #}
<div id="main_middle">
{# MAIN AREA #}
{% block main %}{% endblock %}
</div>
{# ▼メイン下部 #}
{% if Layout.MainBottom %}
<div id="main_bottom">
{{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
</div>
{% endif %}
{# ▲メイン下部 #}
</div>
{# ▼RIGHT COLUMN #}
{% if Layout.SideRight %}
<div id="side_right" class="side">
{# ▼右ナビ #}
{{ include('block.twig', {'Blocks': Layout.SideRight}) }}
{# ▲右ナビ #}
</div>
{% endif %}
{# ▲RIGHT COLUMN #}
{# ▼BOTTOM COLUMN #}
{% if Layout.ContentsBottom %}
<div id="contents_bottom">
{# ▼下ナビ #}
{{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
{# ▲下ナビ #}
</div>
{% endif %}
{# ▲BOTTOM COLUMN #}
</div>
<div class="" style="text-align:center">
<a href="https://liquor-sato.com/minority/" target="_blank"><small>※ 未成年の飲酒は法律で禁止されています。20歳未満の方への酒類の販売は行なっておりません。</small></a>
</div>
<footer id="footer">
{# ▼Footer COLUMN#}
{% if Layout.Footer %}
{# ▼上ナビ #}
{{ include('block.twig', {'Blocks': Layout.Footer}) }}
{# ▲上ナビ #}
{% endif %}
{# ▲Footer COLUMN#}
</footer>
</div>
<div id="drawer" class="drawer sp">
</div>
</div>
<div class="overlay"></div>
<script src="{{ front_urlpath }}/js/vendor/bootstrap.custom.min.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ front_urlpath }}/js/vendor/slick.min.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ front_urlpath }}/js/function.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ asset('assets/js/function.js') }}"></script>
<script src="{{ front_urlpath }}/js/eccube.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ front_urlpath }}/js/jquery.elevatezoom.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script src="{{ front_urlpath }}/js/my.js?v={{ constant('Eccube\\Common\\Constant::VERSION') }}"></script>
<script>
$(function () {
$('#category_select_pc').append($('#category_id_form').clone(true).children());
$('#category_select_sp').append($('#category_id_form').children());
//$('#drawer').append($('.drawer_block').clone(true).children());
$('.my-search').append($('#drawer_block_sp').clone(true).children());
$('#drawer').append($('.member_link').clone(true));
$('#drawer').append($('#category').clone(true).children());
$('#drawer').append($('#drawer_block_sp').children());
//$('#sp-category').append($('#category').clone(true).children());
$.ajax({
url: '{{ front_urlpath }}/img/common/svg.html',
type: 'GET',
dataType: 'html',
}).done(function(data){
$('body').prepend(data);
}).fail(function(data){
});
});
</script>
{% block javascript %}{% endblock %}
{# Layout: CLOSE_BODY_BEFORE #}
{% if Layout.CloseBodyBefore %}
{{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
{% endif %}
{# プラグイン用Snippet #}
{% if plugin_snippets is defined %}
{{ include('snippet.twig', { snippets: plugin_snippets }) }}
{% endif %}
<script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
</body>
</html>