src/Eccube/Resource/template/default/top_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.     <link rel="stylesheet" href="/assets/css/main.bundle.css" />
  9.   </head>
  10.   <body>
  11.     <!-- container-->
  12.     <div class="container">
  13.       {# Layout: HEADER #}
  14.       {% if Layout.Header %}
  15.           {{ include('block.twig', {'Blocks': Layout.Header}) }}
  16.       {% endif %}
  17.       <main id="main">
  18.         {# Layout: MAIN_TOP #}
  19.         {% if Layout.MainTop %}
  20.             {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  21.         {% endif %}
  22.         {# MAIN AREA #}
  23.         {% block main %}{% endblock %}
  24.         {# Layout: MAIN_Bottom #}
  25.         {% if Layout.MainBottom %}
  26.             {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  27.         {% endif %}
  28.       </main>
  29.       {# Layout: CONTENTS_FOOTER #}
  30.       {% if Layout.Footer %}
  31.           {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  32.       {% endif %}
  33.     </div>
  34.     <!-- /container-->
  35.   </body>
  36.   <script src="/assets/js/main.bundle.js"></script>
  37. </html>