src/Eccube/Resource/template/default/default_frame_for_top.twig line 1

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 name="robots" content="noindex , nofollow" />
  12.     {# Layout: HEAD #}
  13.     {% if Layout.Head %}
  14.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  15.     {% endif %}
  16.     {% block each_css %}{% endblock %}
  17.     {# プラグイン用styleseetやmetatagなど #}
  18.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  19.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  20. </head>
  21. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  22. {# Layout: BODY_AFTER #}
  23. {% if Layout.BodyAfter %}
  24.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  25. {% endif %}
  26. {# Layout: HEADER #}
  27. {% if Layout.Header %}
  28.     {{ include('block.twig', {'Blocks': Layout.Header}) }}
  29. {% endif %}
  30. {# MAIN AREA #}
  31. {% block main %}{% endblock %}
  32.     {# Layout: CONTENTS_FOOTER #}
  33. {% if Layout.Footer %}
  34.     {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  35. {% endif %}
  36. {% block each_js %}{% endblock %}
  37. </body>
  38. </html>