start_sf5_project_reboot/app/templates/base.html.twig

20 lines
566 B
Twig
Raw Normal View History

2021-04-17 20:59:26 +00: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-17 22:03:49 +00:00
{{ encore_entry_link_tags('app') }}
2021-04-17 20:59:26 +00:00
{% endblock %}
{% block javascripts %}
2021-04-17 22:03:49 +00:00
{{ encore_entry_script_tags('app') }}
2021-04-17 20:59:26 +00:00
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>