app/template/default/lower_frame.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="ja">
  3.   <head>
  4.     <meta charset="utf-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.     <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>
  7.     <meta name="description" content="a" />
  8.     
  9.     <link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
  10.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  11.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  12.     <link rel="stylesheet" href="/assets/css/main.bundle.css" />
  13.     <script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
  14.     {% block stylesheet %}{% endblock %}
  15.     <style type="text/css">
  16.         main {
  17.             padding-top: 50px;
  18.             padding-bottom: 100px;
  19.         }
  20.     </style>
  21.     <script>
  22.         $(function() {
  23.             $.ajaxSetup({
  24.                 'headers': {
  25.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  26.                 }
  27.             });
  28.         });
  29.     </script>
  30.     {# Layout: HEAD #}
  31.     {% if Layout.Head %}
  32.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  33.     {% endif %}
  34.     {# プラグイン用styleseetやmetatagなど #}
  35.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  36.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  37.   </head>
  38.   <body>
  39.     {# Layout: BODY_AFTER #}
  40.     {% if Layout.BodyAfter %}
  41.       {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  42.     {% endif %}
  43.     <!-- container-->
  44.     <!-- <div class="container"> -->
  45.       {# Layout: HEADER #}
  46.       {% if Layout.Header %}
  47.           {{ include('block.twig', {'Blocks': Layout.Header}) }}
  48.       {% endif %}
  49.       <main>
  50.         {# Layout: MAIN_TOP #}
  51.         {% if Layout.MainTop %}
  52.             {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  53.         {% endif %}
  54.         {# MAIN AREA #}
  55.         {% block main %}{% endblock %}
  56.         {# Layout: MAIN_Bottom #}
  57.         {% if Layout.MainBottom %}
  58.             {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  59.         {% endif %}
  60.       </main>
  61.       {# Layout: CONTENTS_FOOTER #}
  62.       {% if Layout.Footer %}
  63.           {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  64.       {% endif %}
  65.     <!-- </div> -->
  66.     <!-- /container-->
  67.     {% include('@common/lang.twig') %}
  68.     <script src="{{ asset('assets/js/function.js') }}"></script>
  69.     <script src="{{ asset('assets/js/eccube.js') }}"></script>
  70.     {% block javascript %}{% endblock %}
  71.     {# Layout: CLOSE_BODY_BEFORE #}
  72.     {% if Layout.CloseBodyBefore %}
  73.         {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  74.     {% endif %}
  75.     {# プラグイン用Snippet #}
  76.     {% if plugin_snippets is defined %}
  77.         {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  78.     {% endif %}
  79.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  80.   </body>
  81.   <script src="/assets/js/main.bundle.js"></script>
  82. </html>