app/template/syntpl/default_frame.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. {#
  3. This file is part of EC-CUBE
  4. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  5. http://www.ec-cube.co.jp/
  6. For the full copyright and license information, please view the LICENSE
  7. file that was distributed with this source code.
  8. #}
  9. <html lang="{{ eccube_config.locale }}">
  10. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#">
  11.     <meta charset="utf-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  13.     <meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
  14.     {{ include_dispatch('Module/title.twig') }}
  15.     {{ include_dispatch('Module/meta.twig') }}
  16.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
  17.     <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  18.     <link rel="stylesheet" href="{{ asset('assets/css/html5reset-1.6.1.css') }}">
  19.     <link rel="stylesheet" href="{{ asset('assets/css/slick.css') }}">
  20.     <link rel="stylesheet" href="{{ asset('assets/css/simplebar.min.css') }}">
  21.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  22.     <link rel="stylesheet" href="{{ asset('assets/css/tablet.css') }}" media="screen and (min-width: 600px) and (max-width: 1024px)">
  23.     <link rel="stylesheet" href="{{ asset('assets/css/sphone.css') }}" media="screen and (max-width: 599px)">
  24.     <link rel="stylesheet" href="{{ asset('assets/css/extra.css') }}">
  25.     {% block stylesheet %}{% endblock %}
  26.     <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  27.     <script>
  28.         $(function() {
  29.             $.ajaxSetup({
  30.                 'headers': {
  31.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  32.                 }
  33.             });
  34.         });
  35.     </script>
  36.     {# Layout: HEAD #}
  37.     {% if Layout.Head %}
  38.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  39.     {% endif %}
  40.     {# プラグイン用styleseetやmetatagなど #}
  41.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  42.     {{ include_dispatch('Block/html_header.twig') }}
  43.     {{ include_dispatch('Block/ga.twig') }}
  44. </head>
  45. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }} default">
  46. <div id="container" class="container">
  47.     <div class="container-inner">
  48.         {{ include_dispatch('Module/header.twig') }}
  49.         {{ include_dispatch('Module/sp_header.twig') }}
  50.         {% if Page.url == 'homepage' %}
  51.             <div class="mainvisual">
  52.                 {{ include_dispatch('Block/mainvisual.twig') }}
  53.             </div>
  54.             <div class="sp-mainvisual">
  55.                 {{ include_dispatch('Block/sp_mainvisual.twig') }}
  56.             </div>
  57.         {% else %}
  58.             {{ include_dispatch('Module/page_title.twig') }}
  59.             {{ include_dispatch('Module/breadcrumb.twig') }}
  60.         {% endif %}
  61.         <div class="content">
  62.             <div class="content-inner">
  63.                 <div class="main">
  64.                     <div class="main-inner">
  65.                         {% block main %}{% endblock %}
  66.                     </div>
  67.                 </div>
  68.             </div>
  69.         </div>
  70.         {{ include_dispatch('Module/footer.twig') }}
  71.         {{ include_dispatch('Module/sp_footer.twig') }}
  72.         <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>
  73.     </div>
  74. </div><!-- container -->
  75. {{ include_dispatch('Module/drawer.twig') }}
  76. <script src="{{ asset('assets/js/jquery.easing.1.3.js') }}"></script>
  77. <script src="{{ asset('assets/js/slick.min.js') }}"></script>
  78. <script src="{{ asset('assets/js/simplebar.min.js') }}"></script>
  79. {% include('@common/lang.twig') %}
  80. <script src="{{ asset('assets/js/function.js') }}"></script>
  81. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  82. {% block javascript %}{% endblock %}
  83. {# Layout: CLOSE_BODY_BEFORE #}
  84. {% if Layout.CloseBodyBefore %}
  85.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  86. {% endif %}
  87. {# プラグイン用Snippet #}
  88. {% if plugin_snippets is defined %}
  89.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  90. {% endif %}
  91. <script src="{{ asset('assets/js/settings.js') }}"></script>
  92. <div id="loading"></div>
  93. </body>
  94. </html>