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