app/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.     {# Layout: HEAD #}
  10.     {% if Layout.Head %}
  11.       {{ include('block.twig', {'Blocks': Layout.Head}) }}
  12.     {% endif %}
  13.     {# プラグイン用styleseetやmetatagなど #}
  14.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  15.   </head>
  16.   <body>
  17.     {# Layout: BODY_AFTER #}
  18.     {% if Layout.BodyAfter %}
  19.       {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  20.     {% endif %}
  21.     <!-- container-->
  22.     <div class="container">
  23.       {# Layout: HEADER #}
  24.       {% if Layout.Header %}
  25.           {{ include('block.twig', {'Blocks': Layout.Header}) }}
  26.       {% endif %}
  27.       <main id="main">
  28.         {# Layout: MAIN_TOP #}
  29.         {% if Layout.MainTop %}
  30.             {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  31.         {% endif %}
  32.         {# MAIN AREA #}
  33.         {% block main %}{% endblock %}
  34.         {# Layout: MAIN_Bottom #}
  35.         {% if Layout.MainBottom %}
  36.             {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  37.         {% endif %}
  38.       </main>
  39.       {# Layout: CONTENTS_FOOTER #}
  40.       {% if Layout.Footer %}
  41.           {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  42.       {% endif %}
  43.     </div>
  44.     <!-- /container-->
  45.   </body>
  46.   <script src="/assets/js/main.bundle.js"></script>
  47. </html>