templates/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="robots" content="noindex, nofollow">
  8. <title>
  9. {% block title %}
  10. {% if app.request.locale == 'hu' %}
  11. {{ page_title_hu }}
  12. {% elseif app.request.locale == 'sk' %}
  13. {{ page_title_sk }}
  14. {% endif %}
  15. {% endblock %}
  16. </title>
  17. {% block stylesheets %}{% endblock %}
  18. <link rel="icon" type="image/x-icon" href="{{ asset('favicon_' ~ app.environment ~ '.ico')|appendAssetCache }}">
  19. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
  20. </head>
  21. <body>
  22. {% block body %}{% endblock %}
  23. {% block javascripts %}{% endblock %}
  24. </body>
  25. </html>
  26. {#<!DOCTYPE html>#}
  27. {#<html>#}
  28. {# <head>#}
  29. {# <meta charset="UTF-8">#}
  30. {# <title>{% block title %}Welcome!{% endblock %}</title>#}
  31. {# #}{# Run `composer require symfony/webpack-encore-bundle`#}
  32. {# and uncomment the following Encore helpers to start using Symfony UX #}
  33. {# {% block stylesheets %}#}
  34. {# #}{#{{ encore_entry_link_tags('app') }}#}
  35. {# {% endblock %}#}
  36. {# {% block javascripts %}#}
  37. {# #}{#{{ encore_entry_script_tags('app') }}#}
  38. {# {% endblock %}#}
  39. {# </head>#}
  40. {# <body>#}
  41. {# {% block body %}{% endblock %}#}
  42. {# </body>#}
  43. {#</html>#}