app/template/kaiino/default_frame.twig line 104

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.     {#<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 app.request.get('_route') == 'homepage' %}
  17.         【カグカイーノ】お得な中古・新品家具の通販サイト
  18.       {% else %}
  19.         {% if subtitle is defined and subtitle is not empty %}{{ subtitle }}{% elseif title is defined and title is not empty %}{{ title }}{% endif %} | 【カグカイーノ】お得な中古・新品家具の通販サイト
  20.       {% endif %}
  21.     </title>
  22.     
  23.     {% if Page.meta_tags is not empty %}
  24.         {{ include(template_from_string(Page.meta_tags)) }}
  25.         {% if Page.description is not empty %}
  26.             <meta name="description" content="{{ Page.description }}">
  27.         {% endif %}
  28.     {% else %}
  29.         {{ include('meta.twig') }}
  30.     {% endif %}
  31.     {% if Page.author is not empty %}
  32.         <meta name="author" content="{{ Page.author }}">
  33.     {% endif %}
  34.     {% if Page.keyword is not empty %}
  35.         <meta name="keywords" content="{{ Page.keyword }}">
  36.     {% endif %}
  37.     {% if Page.meta_robots is not empty %}
  38.         <meta name="robots" content="{{ Page.meta_robots }}">
  39.     {% endif %}
  40.     {% if Page.meta_tags is not empty %}
  41.         {{ include(template_from_string(Page.meta_tags)) }}
  42.     {% endif %}
  43.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  44.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  45.     <link rel="stylesheet" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css">
  46.     <link rel="preconnect" href="https://fonts.googleapis.com">
  47.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  48.     <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  49.     <link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;600&display=swap" rel="stylesheet">
  50.     <link rel="stylesheet" href="{{ asset('assets/css/eccube.min.css') }}">
  51.     
  52.     {% block stylesheet_lib %}{% endblock %}
  53.     
  54.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}?{{ 'now'|date('U') }}">
  55.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css') }}?{{ 'now'|date('U') }}">
  56.     
  57.     {% block stylesheet %}{% endblock %}
  58.     
  59.     {% block cv_tags %}{% endblock %}
  60.     
  61.     <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
  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="{{ body_class|default('other_page') }}">
  80. {# Layout: BODY_AFTER #}
  81. {% if Layout.BodyAfter %}
  82.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  83. {% endif %}
  84. {% if isMaintenance %}
  85.     <div class="ec-maintenanceAlert">
  86.         <div>
  87.             <div class="ec-maintenanceAlert__icon"><img src="{{ asset('assets/icon/exclamation-white.svg') }}" alt="" /></div>
  88.             {{ 'メンテナンスモードが有効になっています。'|trans }}
  89.         </div>
  90.     </div>
  91. {% endif %}
  92. <div class="ec-layoutRole">
  93.     {# Layout: HEADER #}
  94.     {% if Layout.Header %}
  95.         <div class="ec-headerNaviRole ec-headerNaviFix">
  96.             <div class="ec-headerNaviFix__inner">
  97.                 <div class="ec-headerNaviRole__left">
  98.                     <div class="ec-headerNaviRole__search">
  99.                         {{ render(path('block_search_product')) }}
  100.                     </div>
  101.                 </div>
  102.                 <div class="ec-headerNaviRole__right">
  103.                     <div class="ec-headerNaviRole__right__upper">
  104.                         <div class="ec-headerNaviRole__nav">
  105.                             {{ include('Block/login.twig') }}
  106.                         </div>
  107.                         <div class="ec-headerRole__cart">
  108.                             {{ include('Block/cart.twig') }}
  109.                         </div>
  110.                     </div>
  111.                     <div class="ec-headerNaviRole__right__lower">
  112.                     </div>
  113.                 </div>
  114.             </div>
  115.         </div>
  116.         <div class="ec-layoutRole__header">
  117.             {{ include('block.twig', {'Blocks': Layout.Header}) }}
  118.         </div>
  119.     {% endif %}
  120.     {# Layout: CONTENTS_TOP #}
  121.     {% if Layout.ContentsTop %}
  122.         <div class="ec-layoutRole__contentTop">
  123.             {{ include('block.twig', {'Blocks': Layout.ContentsTop}) }}
  124.         </div>
  125.     {% endif %}
  126.     <div class="ec-layoutRole__contents">
  127.         {# Layout: SIDE_LEFT #}
  128.         {#
  129.         {% if Layout.SideLeft %}
  130.             <div class="ec-layoutRole__left">
  131.                 {{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
  132.             </div>
  133.         {% endif %}
  134.         #}
  135.         {% set layoutRoleMain = 'ec-layoutRole__main' %}
  136.         {% if Layout.ColumnNum == 2 %}
  137.             {% set layoutRoleMain = 'ec-layoutRole__mainWithColumn' %}
  138.         {% elseif Layout.ColumnNum == 3 %}
  139.             {% set layoutRoleMain = 'ec-layoutRole__mainBetweenColumn' %}
  140.         {% endif %}
  141.         <div class="{{ layoutRoleMain }}">
  142.             {# Layout: MAIN_TOP #}
  143.             {% if Layout.MainTop %}
  144.                 <div class="ec-layoutRole__mainTop">
  145.                     {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  146.                 </div>
  147.             {% endif %}
  148.             {# MAIN AREA #}
  149.             {% block main %}{% endblock %}
  150.             {# Layout: MAIN_Bottom #}
  151.             {% if Layout.MainBottom %}
  152.                 <div class="ec-layoutRole__mainBottom">
  153.                     {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  154.                 </div>
  155.             {% endif %}
  156.         </div>
  157.         {# Layout: SIDE_RIGHT #}
  158.         {% if Layout.SideRight %}
  159.             <div class="ec-layoutRole__right">
  160.                 {{ include('block.twig', {'Blocks': Layout.SideRight}) }}
  161.             </div>
  162.         {% endif %}
  163.     </div>
  164.     {# Layout: CONTENTS_BOTTOM #}
  165.     {% if Layout.ContentsBottom %}
  166.         <div class="ec-layoutRole__contentBottom">
  167.             {{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
  168.         </div>
  169.     {% endif %}
  170.     {# Layout: CONTENTS_FOOTER #}
  171.     {% if Layout.Footer %}
  172.         <div class="ec-layoutRole__footer">
  173.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  174.         </div>
  175.     {% endif %}
  176. </div><!-- ec-layoutRole -->
  177. <div class="ec-overlayRole"></div>
  178. <div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
  179. <div class="ec-drawerRole">
  180.     {# Layout: DRAWER #}
  181.     {% if Layout.Drawer %}
  182.         {{ include('block.twig', {'Blocks': Layout.Drawer}) }}
  183.     {% endif %}
  184. </div>
  185. {#<div class="ec-blockTopBtn pagetop"><img src="{{ asset('assets/icon/pagetop.svg') }}" alt=""></div>#}
  186. <div class="ec-blockTopBtn pagetop"><i class="fas fa-arrow-circle-up"></i></div>
  187. <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  188. <script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
  189. {% include('@common/lang.twig') %}
  190. <script src="{{ asset('assets/js/function.js') }}"></script>
  191. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  192. <script src="{{ asset('assets/js/p4003.js') }}"></script>
  193. {% block javascript %}{% endblock %}
  194. {# Layout: CLOSE_BODY_BEFORE #}
  195. {% if Layout.CloseBodyBefore %}
  196.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  197. {% endif %}
  198. {# プラグイン用Snippet #}
  199. {% if plugin_snippets is defined %}
  200.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  201. {% endif %}
  202.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  203. </body>
  204. </html>