templates/base.html.twig line 1

  1. {% include 'styles.html.twig' %}
  2. {% set currentUrl = app.request.uri %}
  3. <!DOCTYPE html>
  4. <html>
  5.     <head>
  6.         <meta charset="UTF-8">
  7.         <title>{% block title %}Welcome!{% endblock %}</title>
  8.         {% block styles %}{% endblock %}
  9.         {% block javascripts %}
  10.             {{ encore_entry_script_tags('app') }}
  11.         {% endblock %}
  12.     </head>
  13.     <body>
  14.         <nav>
  15.             {% block nav %}{% endblock %}
  16.             {% if absolute_url(path('main_page')) !=  app.request.uri %}
  17.                 <a class="button" href="{{ path('main_page') }}">На главную</a>
  18.             {% endif %}
  19.         </nav>
  20.         {% block body %}{% endblock %}
  21.     </body>
  22. </html>