<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<title>
{% block title %}
{% if app.request.locale == 'hu' %}
{{ page_title_hu }}
{% elseif app.request.locale == 'sk' %}
{{ page_title_sk }}
{% endif %}
{% endblock %}
</title>
{% block stylesheets %}{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon_' ~ app.environment ~ '.ico')|appendAssetCache }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}{% endblock %}
</body>
</html>
{#<!DOCTYPE html>#}
{#<html>#}
{# <head>#}
{# <meta charset="UTF-8">#}
{# <title>{% block title %}Welcome!{% endblock %}</title>#}
{# #}{# Run `composer require symfony/webpack-encore-bundle`#}
{# and uncomment the following Encore helpers to start using Symfony UX #}
{# {% block stylesheets %}#}
{# #}{#{{ encore_entry_link_tags('app') }}#}
{# {% endblock %}#}
{# {% block javascripts %}#}
{# #}{#{{ encore_entry_script_tags('app') }}#}
{# {% endblock %}#}
{# </head>#}
{# <body>#}
{# {% block body %}{% endblock %}#}
{# </body>#}
{#</html>#}