app/template/bynoiezam/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: https://ogp.me/ns# fb: https://ogp.me/ns/fb# product: https://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.     <title>{{ BaseInfo.shop_name }}{% if subtitle is defined and subtitle is not empty %} / {{ subtitle }}{% elseif title is defined and title is not empty %} / {{ title }}{% endif %}</title>
  15.     {% if Page.meta_tags is not empty %}
  16.         {{ include(template_from_string(Page.meta_tags)) }}
  17.         {% if Page.description is not empty %}
  18.             <meta name="description" content="{{ Page.description }}">
  19.         {% endif %}
  20.     {% else %}
  21.         {{ include('meta.twig') }}
  22.     {% endif %}
  23.     {% if Page.author is not empty %}
  24.         <meta name="author" content="{{ Page.author }}">
  25.     {% endif %}
  26.     {% if Page.keyword is not empty %}
  27.         <meta name="keywords" content="{{ Page.keyword }}">
  28.     {% endif %}
  29.     {% if Page.meta_robots is not empty %}
  30.         <meta name="robots" content="{{ Page.meta_robots }}">
  31.     {% endif %}
  32.     {% if Page.meta_tags is not empty %}
  33.         {{ include(template_from_string(Page.meta_tags)) }}
  34.     {% endif %}
  35.     <link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
  36.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  37.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  38.     <link rel="stylesheet" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css">
  39.     <link rel="preconnect" href="https://fonts.googleapis.com">
  40.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  41.     <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;600&display=swap" rel="stylesheet">
  42.     <link rel="stylesheet" href="{{ asset('assets/css/eccube.min.css') }}">
  43.     <link rel="stylesheet" href="{{ asset('assets/css/style.min.css') }}">
  44.     {#<script src="{{ asset('front.bundle.js', 'bundle') }}"></script>#}
  45.     {% block stylesheet %}{% endblock %}
  46.     <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
  47.     <script>
  48.         $(function() {
  49.             $.ajaxSetup({
  50.                 'headers': {
  51.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  52.                 }
  53.             });
  54.         });
  55.     </script>
  56.     {# Layout: HEAD #}
  57.     {% if Layout.Head %}
  58.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  59.     {% endif %}
  60.     {# プラグイン用styleseetやmetatagなど #}
  61.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  62.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  63. </head>
  64. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  65. {# Layout: BODY_AFTER #}
  66. {% if Layout.BodyAfter %}
  67.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  68. {% endif %}
  69. {% if isMaintenance %}
  70.     <div class="ec-maintenanceAlert">
  71.         <div>
  72.             <div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}" alt="" /></div>
  73.             {{ 'メンテナンスモードが有効になっています。'|trans }}
  74.         </div>
  75.     </div>
  76. {% endif %}
  77. <div class="ec-layoutRole">
  78.     {# Layout: HEADER #}
  79.     {% if Layout.Header %}
  80.         <div class="ec-headerNaviRole ec-headerNaviFix">
  81.             <div class="ec-headerNaviFix__inner">
  82.                 <div class="ec-headerNaviRole__left">
  83.                     <div class="ec-headerNaviRole__search">
  84.                         {{ render(path('block_search_product')) }}
  85.                     </div>
  86.                 </div>
  87.                 <div class="ec-headerNaviRole__right">
  88.                     <div class="ec-headerNaviRole__right__upper">
  89.                         <div class="ec-headerNaviRole__nav">
  90.                             {{ include('Block/login.twig') }}
  91.                         </div>
  92.                         <div class="ec-headerRole__cart">
  93.                             {{ include('Block/cart.twig') }}
  94.                         </div>
  95.                     </div>
  96.                     <div class="ec-headerNaviRole__right__lower">
  97.                     </div>
  98.                 </div>
  99.             </div>
  100.         </div>
  101.         <div class="ec-layoutRole__header">
  102.             {{ include('block.twig', {'Blocks': Layout.Header}) }}
  103.         </div>
  104.     {% endif %}
  105.     {# Layout: CONTENTS_TOP #}
  106.     {% if Layout.ContentsTop %}
  107.         <div class="ec-layoutRole__contentTop">
  108.             {{ include('block.twig', {'Blocks': Layout.ContentsTop}) }}
  109.         </div>
  110.     {% endif %}
  111.     <div class="ec-layoutRole__contents">
  112.         {# Layout: SIDE_LEFT #}
  113.         {% if Layout.SideLeft %}
  114.             <div class="ec-layoutRole__left">
  115.                 {{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
  116.             </div>
  117.         {% endif %}
  118.         {% set layoutRoleMain = 'ec-layoutRole__main' %}
  119.         {% if Layout.ColumnNum == 2 %}
  120.             {% set layoutRoleMain = 'ec-layoutRole__mainWithColumn' %}
  121.         {% elseif Layout.ColumnNum == 3 %}
  122.             {% set layoutRoleMain = 'ec-layoutRole__mainBetweenColumn' %}
  123.         {% endif %}
  124.         <div class="{{ layoutRoleMain }}">
  125.             {# Layout: MAIN_TOP #}
  126.             {% if Layout.MainTop %}
  127.                 <div class="ec-layoutRole__mainTop">
  128.                     {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  129.                 </div>
  130.             {% endif %}
  131.             {# MAIN AREA #}
  132.             {% block main %}{% endblock %}
  133.             {# Layout: MAIN_Bottom #}
  134.             {% if Layout.MainBottom %}
  135.                 <div class="ec-layoutRole__mainBottom">
  136.                     {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  137.                 </div>
  138.             {% endif %}
  139.         </div>
  140.         {# Layout: SIDE_RIGHT #}
  141.         {% if Layout.SideRight %}
  142.             <div class="ec-layoutRole__right">
  143.                 {{ include('block.twig', {'Blocks': Layout.SideRight}) }}
  144.             </div>
  145.         {% endif %}
  146.     </div>
  147.     {# Layout: CONTENTS_BOTTOM #}
  148.     {% if Layout.ContentsBottom %}
  149.         <div class="ec-layoutRole__contentBottom">
  150.             {{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
  151.         </div>
  152.     {% endif %}
  153.     {# Layout: CONTENTS_FOOTER #}
  154.     {% if Layout.Footer %}
  155.         <div class="ec-layoutRole__footer">
  156.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  157.         </div>
  158.     {% endif %}
  159. </div><!-- ec-layoutRole -->
  160. <div class="ec-overlayRole"></div>
  161. <div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
  162. <div class="ec-drawerRole">
  163.     {# Layout: DRAWER #}
  164.     {% if Layout.Drawer %}
  165.         {{ include('block.twig', {'Blocks': Layout.Drawer}) }}
  166.     {% endif %}
  167. </div>
  168. <div class="ec-blockTopBtn pagetop"><img src="{{ asset('assets/icon/pagetop.svg') }}" alt=""></div>
  169. <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  170. <script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
  171. {% include('@common/lang.twig') %}
  172. <script src="{{ asset('assets/js/function.js') }}"></script>
  173. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  174. <script src="{{ asset('assets/js/p4003.js') }}"></script>
  175. {% block javascript %}{% endblock %}
  176. {# Layout: CLOSE_BODY_BEFORE #}
  177. {% if Layout.CloseBodyBefore %}
  178.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  179. {% endif %}
  180. {# プラグイン用Snippet #}
  181. {% if plugin_snippets is defined %}
  182.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  183. {% endif %}
  184.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  185. </body>
  186. </html>