templates/base.html.twig line 1
{% include 'styles.html.twig' %}
{% set currentUrl = app.request.uri %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block styles %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
<nav>
{% block nav %}{% endblock %}
{% if absolute_url(path('main_page')) != app.request.uri %}
<a class="button" href="{{ path('main_page') }}">На главную</a>
{% endif %}
</nav>
{% block body %}{% endblock %}
</body>
</html>