src/Eccube/Resource/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.     <!-- container-->
  40.     <!-- <div class="container"> -->
  41.       {# Layout: HEADER #}
  42.       {% if Layout.Header %}
  43.           {{ include('block.twig', {'Blocks': Layout.Header}) }}
  44.       {% endif %}
  45.       <main>
  46.         {# Layout: MAIN_TOP #}
  47.         {% if Layout.MainTop %}
  48.             {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  49.         {% endif %}
  50.         {# MAIN AREA #}
  51.         {% block main %}{% endblock %}
  52.         {# Layout: MAIN_Bottom #}
  53.         {% if Layout.MainBottom %}
  54.             {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  55.         {% endif %}
  56.       </main>
  57.       {# Layout: CONTENTS_FOOTER #}
  58.       {% if Layout.Footer %}
  59.           {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  60.       {% endif %}
  61.     <!-- </div> -->
  62.     <!-- /container-->
  63.     {% include('@common/lang.twig') %}
  64.     <script src="{{ asset('assets/js/function.js') }}"></script>
  65.     <script src="{{ asset('assets/js/eccube.js') }}"></script>
  66.     {% block javascript %}{% endblock %}
  67.     {# Layout: CLOSE_BODY_BEFORE #}
  68.     {% if Layout.CloseBodyBefore %}
  69.         {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  70.     {% endif %}
  71.     {# プラグイン用Snippet #}
  72.     {% if plugin_snippets is defined %}
  73.         {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  74.     {% endif %}
  75.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  76.   </body>
  77.   <script src="/assets/js/main.bundle.js"></script>
  78. </html>