app/template/plants/default_frame.twig line 82

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.     <meta name="google-site-verification" content="5XXDoMW9yTtXw6M3OkoyqxcJ8SJ8DWqSyUrIRmiAots" />
  16.     <meta property="og:title" content="Function">
  17.     <meta property="og:description" content="私たちは、全国に展開しているお花の仲卸会社です。従来のFAXでの発注ではなく、手軽にスマホで購入できるサービスをはじめました。朝早く、市場まで行かなくても、店頭に並ぶお花を前日に見ることができます。">
  18.     <meta property="og:image" content="{{ asset('assets/img/common/ogp.jpg', 'user_data') }}">
  19.     <meta property="og:locale" content="ja_JP">
  20.    {% if Page.author is not empty %}
  21.         <meta name="author" content="{{ Page.author }}">
  22.     {% endif %}
  23.     {% if Page.description is not empty %}
  24.         <meta name="description" content="{{ Page.description }}">
  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), sandboxed = true) }}
  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="stylesheet" href="{{ asset('assets/css/style.css') }}">
  40.     <link rel="stylesheet" href="{{ asset('assets/css/plantscustomize.css', 'user_data') }}">
  41.     <link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.css" rel="stylesheet"/>
  42.     {% block stylesheet %}{% endblock %}
  43.     <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  44.     <script>
  45.         $(function() {
  46.             $.ajaxSetup({
  47.                 'headers': {
  48.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  49.                 }
  50.             });
  51.         });
  52.     </script>
  53.     {# Layout: HEAD #}
  54.     {% if Layout.Head %}
  55.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  56.     {% endif %}
  57.     {# プラグイン用styleseetやmetatagなど #}
  58.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  59.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  60. </head>
  61. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  62. {# Layout: BODY_AFTER #}
  63. {% if Layout.BodyAfter %}
  64.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  65. {% endif %}
  66. <div class="ec-layoutRole">
  67.     {# Layout: HEADER #}
  68.     {% if Layout.Header %}
  69.         <div class="ec-layoutRole__header">
  70.             {{ include('block.twig', {'Blocks': Layout.Header}) }}
  71.         </div>
  72.     {% endif %}
  73.     {# Layout: CONTENTS_TOP #}
  74.     {% if Layout.ContentsTop %}
  75.         <div class="ec-layoutRole__contentTop">
  76.             {{ include('block.twig', {'Blocks': Layout.ContentsTop}) }}
  77.         </div>
  78.     {% endif %}
  79.     <div class="ec-layoutRole__contents">
  80.         {# Layout: SIDE_LEFT #}
  81.         {% if Layout.SideLeft %}
  82.             <div class="ec-layoutRole__left">
  83.                 {{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
  84.             </div>
  85.         {% endif %}
  86.         {% set layoutRoleMain = 'ec-layoutRole__main' %}
  87.         {% if Layout.ColumnNum == 2 %}
  88.             {% set layoutRoleMain = 'ec-layoutRole__mainWithColumn' %}
  89.         {% elseif Layout.ColumnNum == 3 %}
  90.             {% set layoutRoleMain = 'ec-layoutRole__mainBetweenColumn' %}
  91.         {% endif %}
  92.         <div class="{{ layoutRoleMain }}">
  93.             {# Layout: MAIN_TOP #}
  94.             {% if Layout.MainTop %}
  95.                 <div class="ec-layoutRole__mainTop">
  96.                     {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  97.                 </div>
  98.             {% endif %}
  99.             {# MAIN AREA #}
  100.             {% block main %}{% endblock %}
  101.             {# Layout: MAIN_Bottom #}
  102.             {% if Layout.MainBottom %}
  103.                 <div class="ec-layoutRole__mainBottom">
  104.                     {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  105.                 </div>
  106.             {% endif %}
  107.         </div>
  108.         {# Layout: SIDE_RIGHT #}
  109.         {% if Layout.SideRight %}
  110.             <div class="ec-layoutRole__right">
  111.                 {{ include('block.twig', {'Blocks': Layout.SideRight}) }}
  112.             </div>
  113.         {% endif %}
  114.     </div>
  115.     {# Layout: CONTENTS_BOTTOM #}
  116.     {% if Layout.ContentsBottom %}
  117.         <div class="ec-layoutRole__contentBottom">
  118.             {{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
  119.         </div>
  120.     {% endif %}
  121.     {# Layout: CONTENTS_FOOTER #}
  122.     {% if Layout.Footer %}
  123.         <div class="ec-layoutRole__footer">
  124.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  125.         </div>
  126.     {% endif %}
  127. </div><!-- ec-layoutRole -->
  128. <div class="ec-overlayRole"></div>
  129. <div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
  130. <div class="ec-drawerRole">
  131.     {# Layout: DRAWER #}
  132.     {% if Layout.Drawer %}
  133.         {{ include('block.twig', {'Blocks': Layout.Drawer}) }}
  134.     {% endif %}
  135. </div>
  136. <!-- <div class="ec-blockTopBtn pagetop">{{'ページトップへ'|trans}}</div> -->
  137. <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  138. <script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
  139. {% include('@common/lang.twig') %}
  140. <script src="{{ asset('assets/js/function.js') }}"></script>
  141. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  142. {% block javascript %}{% endblock %}
  143. {# Layout: CLOSE_BODY_BEFORE #}
  144. {% if Layout.CloseBodyBefore %}
  145.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  146. {% endif %}
  147. {# プラグイン用Snippet #}
  148. {% if plugin_snippets is defined %}
  149.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  150. {% endif %}
  151.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  152. </body>
  153. </html>