pflaenz.li-Symfony/templates/base.html.twig

24 lines
695 B
Twig
Raw Normal View History

2021-04-22 12:46:14 +02:00
<!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 %}
2021-04-24 16:59:51 +02:00
{{ encore_entry_link_tags('app') }}
2021-04-22 12:46:14 +02:00
{% endblock %}
{% block javascripts %}
2021-04-24 16:59:51 +02:00
{{ encore_entry_script_tags('app') }}
2021-04-22 12:46:14 +02:00
{% endblock %}
2021-04-24 16:59:51 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-04-22 12:46:14 +02:00
</head>
<body>
2021-04-24 16:59:51 +02:00
<div class="container">
{% block body %}{% endblock %}
</div>
2021-04-22 12:46:14 +02:00
</body>
</html>