app/template/default/fullwidth_frame.twig line 149

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 robots="noindex" />
  12.     <!-- Google tag (gtag.js) -->
  13.     <script async src="https://www.googletagmanager.com/gtag/js?id=G-ER7VE8E3CZ"></script>
  14.     <script>
  15.         window.dataLayer = window.dataLayer || [];
  16.         function gtag(){dataLayer.push(arguments);}
  17.         gtag('js', new Date());
  18.         gtag('config', 'G-ER7VE8E3CZ');
  19.     </script>
  20.     <meta charset="utf-8">
  21.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  22.     <meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
  23.     {% if app.request.get('_route') == 'homepage' %}
  24.         <title>{{ BaseInfo.shop_name }}</title>{# トップページの<title>タグになります #}
  25.     {% elseif app.request.get('_route') == 'product_list' %}
  26.         {% if app.request.get('category_id') != "" %}
  27.             <title>{{ Category.name }}の商品一覧 / {{ BaseInfo.shop_name }}</title>{# カテゴリーページの<title>タグになります #}
  28.         {% endif %}
  29.     {% elseif app.request.get('_route') == 'product_detail' %}
  30.         <title>{{ Product.name }} / {{ BaseInfo.shop_name }}</title>{# 商品詳細ページの<title>タグになります #}
  31.     {% else %}
  32.         <title>{{ title }} / {{ BaseInfo.shop_name }}</title>{# その他ページの<title>タグになります #}
  33.     {% endif %}
  34.     <meta name="description" content="家具通販・インテリア通販のIKUS(イクス)。カール・ハンセン&サン、カリモクニュースタンダード、IKASAS(イカサ)、柏木工など国内外の選りすぐりの家具を取り揃えております。">
  35.     {% if Page.meta_tags is not empty %}
  36.         {{ include(template_from_string(Page.meta_tags)) }}
  37.     {% else %}
  38.         {{ include('meta.twig') }}
  39.     {% endif %}
  40.     {% if Page.author is not empty %}
  41.         <meta name="author" content="{{ Page.author }}">
  42.     {% endif %}
  43.     {% if Page.keyword is not empty %}
  44.         <meta name="keywords" content="{{ Page.keyword }}">
  45.     {% endif %}
  46.     {% if Page.meta_robots is not empty %}
  47.         <meta name="robots" content="{{ Page.meta_robots }}">
  48.     {% endif %}
  49.     <link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
  50.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  51.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  52.     <script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
  53.     {% block stylesheet %}{% endblock %}
  54.     <script>
  55.         $(function() {
  56.             $.ajaxSetup({
  57.                 'headers': {
  58.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  59.                 }
  60.             });
  61.         });
  62.     </script>
  63.     {# Layout: HEAD #}
  64.     {% if Layout.Head %}
  65.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  66.     {% endif %}
  67.     {# プラグイン用styleseetやmetatagなど #}
  68.     <link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css" rel="stylesheet">
  69.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  70.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  71.     <link rel="preconnect" href="https://fonts.googleapis.com">
  72.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  73.    <link href="https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital@1&family=Inter:wght@100;200;300;400;700;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP&display=swap" rel="stylesheet">
  74.     <link rel="stylesheet" href="{{ asset('assets/css/main.css') }}">
  75. </head>
  76. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  77. {# Layout: BODY_AFTER #}
  78. {% if Layout.BodyAfter %}
  79.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  80. {% endif %}
  81. <div class="overlay"></div>
  82. {% if isMaintenance %}
  83.     <div class="ec-maintenanceAlert">
  84.         <div>
  85.             <div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}"/></div>
  86.             {{ 'メンテナンスモードが有効になっています。'|trans }}
  87.         </div>
  88.     </div>
  89. {% endif %}
  90. <div class="ec-layoutRole">
  91.     <div class="announcement_bar">
  92.         <div class="announcement_bar__inner">250,000円(税別)以上のご購入で送料無料</div><!--/.announcement_bar_inner-->
  93.     </div><!--/.announcement_bar-->
  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.         {% set layoutRoleMain = 'ec-layoutRole__main' %}
  107.         {% if Layout.ColumnNum == 2 %}
  108.             {% set layoutRoleMain = 'ec-layoutRole__mainWithColumn' %}
  109.         {% elseif Layout.ColumnNum == 3 %}
  110.             {% set layoutRoleMain = 'ec-layoutRole__mainBetweenColumn' %}
  111.         {% endif %}
  112.         <main class="{{ layoutRoleMain }}">
  113.             {# Layout: MAIN_TOP #}
  114.             {% if Layout.MainTop %}
  115.                 <div class="ec-layoutRole__mainTop">
  116.                     {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  117.                 </div>
  118.             {% endif %}
  119.             {# MAIN AREA #}
  120.             {% block main %}{% endblock %}
  121.             {# Layout: MAIN_Bottom #}
  122.             {% if Layout.MainBottom %}
  123.                 <div class="ec-layoutRole__mainBottom">
  124.                     {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  125.                 </div>
  126.             {% endif %}
  127.         </main>
  128.     {# Layout: CONTENTS_BOTTOM #}
  129.     {% if Layout.ContentsBottom %}
  130.         <div class="ec-layoutRole__contentBottom">
  131.             {{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
  132.         </div>
  133.     {% endif %}
  134.     {# Layout: CONTENTS_FOOTER #}
  135.     {% if Layout.Footer %}
  136.         <footer class="ec-layoutRole__footer">
  137.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  138.         </footer>
  139.     {% endif %}
  140. </div><!-- ec-layoutRole -->
  141. <div class="ec-overlayRole"></div>
  142. <div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
  143. <div class="ec-drawerRole">
  144.     {# Layout: DRAWER #}
  145.     {% if Layout.Drawer %}
  146.         {{ include('block.twig', {'Blocks': Layout.Drawer}) }}
  147.     {% endif %}
  148. </div>
  149. {% include('@common/lang.twig') %}
  150. <script src="{{ asset('assets/js/function.js') }}"></script>
  151. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  152. {% block javascript %}{% endblock %}
  153. {# Layout: CLOSE_BODY_BEFORE #}
  154. {% if Layout.CloseBodyBefore %}
  155.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  156. {% endif %}
  157. {# プラグイン用Snippet #}
  158. {% if plugin_snippets is defined %}
  159.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  160. {% endif %}
  161. <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  162. <!-- Swiper -->
  163. <link rel="stylesheet" href="{{ asset('assets/css/swiper.min.css') }}">
  164. <script src="{{ asset('assets/js/swiper.min.js') }}"></script>
  165. <!-- Muuri -->
  166. <script src="https://unpkg.com/web-animations-js@2.3.2/web-animations.min.js"></script>
  167. <script src="https://unpkg.com/muuri@0.8.0/dist/muuri.min.js"></script>
  168. <script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
  169. <script src="{{ asset('assets/js/common.js') }}"></script>
  170. </body>
  171. </html>