<!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: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#">
<meta charset="utf-8">
<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')) }}">
{{ include_dispatch('Module/title.twig') }}
{{ include_dispatch('Module/meta.twig') }}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="{{ asset('assets/css/html5reset-1.6.1.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/slick.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/simplebar.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
<link rel="stylesheet" href="{{ asset('assets/css/tablet.css') }}" media="screen and (min-width: 600px) and (max-width: 1024px)">
<link rel="stylesheet" href="{{ asset('assets/css/sphone.css') }}" media="screen and (max-width: 599px)">
<link rel="stylesheet" href="{{ asset('assets/css/extra.css') }}">
{% block stylesheet %}{% endblock %}
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></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 %}
{{ include_dispatch('Block/html_header.twig') }}
{{ include_dispatch('Block/ga.twig') }}
</head>
<body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }} default">
<div id="container" class="container">
<div class="container-inner">
{{ include_dispatch('Module/header.twig') }}
{{ include_dispatch('Module/sp_header.twig') }}
{% if Page.url == 'homepage' %}
<div class="mainvisual">
{{ include_dispatch('Block/mainvisual.twig') }}
</div>
<div class="sp-mainvisual">
{{ include_dispatch('Block/sp_mainvisual.twig') }}
</div>
{% else %}
{{ include_dispatch('Module/page_title.twig') }}
{{ include_dispatch('Module/breadcrumb.twig') }}
{% endif %}
<div class="content">
<div class="content-inner">
<div class="main">
<div class="main-inner">
{% block main %}{% endblock %}
</div>
</div>
</div>
</div>
{{ include_dispatch('Module/footer.twig') }}
{{ include_dispatch('Module/sp_footer.twig') }}
<div class="pagetop-btn-wrap"><a href="#container" class="pagetop-btn scroll"><img src="//www.syaken.biz/images/pc/pagetop-btn.png" alt="ページ上部へ" /></a></div>
</div>
</div><!-- container -->
{{ include_dispatch('Module/drawer.twig') }}
<script src="{{ asset('assets/js/jquery.easing.1.3.js') }}"></script>
<script src="{{ asset('assets/js/slick.min.js') }}"></script>
<script src="{{ asset('assets/js/simplebar.min.js') }}"></script>
{% include('@common/lang.twig') %}
<script src="{{ asset('assets/js/function.js') }}"></script>
<script src="{{ asset('assets/js/eccube.js') }}"></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/settings.js') }}"></script>
<div id="loading"></div>
</body>
</html>