vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/Resources/views/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale|slice(0, 2) }}">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>{% block title %}{{ sylius.channel.name }}{% endblock %}</title>
  7.     <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  8.     {% block metatags %}
  9.     {% endblock %}
  10.     {% block stylesheets %}
  11.         {{ sylius_template_event('sylius.shop.layout.stylesheets') }}
  12.     {% endblock %}
  13.     {{ sylius_template_event('sylius.shop.layout.head') }}
  14. </head>
  15. <body class="pushable">
  16. {{ sylius_template_event('sylius.shop.layout.before_body') }}
  17. <div class="pusher">
  18.     {% block top %}
  19.         <div id="menu" class="ui large sticky inverted stackable menu">
  20.             {{ sylius_template_event('sylius.shop.layout.topbar') }}
  21.         </div>
  22.     {% endblock %}
  23.     <div class="ui container">
  24.         {% block header %}
  25.             <header>
  26.                 {{ sylius_template_event('sylius.shop.layout.header') }}
  27.             </header>
  28.         {% endblock %}
  29.         {% include '@SyliusShop/_flashes.html.twig' %}
  30.         {{ sylius_template_event('sylius.shop.layout.before_content') }}
  31.         {% block content %}
  32.         {% endblock %}
  33.         {{ sylius_template_event('sylius.shop.layout.after_content') }}
  34.     </div>
  35.     {% block footer %}
  36.         {% include '@SyliusShop/_footer.html.twig' %}
  37.     {% endblock %}
  38. </div>
  39. {% block javascripts %}
  40.     {{ sylius_template_event('sylius.shop.layout.javascripts') }}
  41. {% endblock %}
  42. {% include '@SyliusUi/Modal/_confirmation.html.twig' %}
  43. {{ sylius_template_event('sylius.shop.layout.after_body') }}
  44. </body>
  45. </html>