Files
symfony-flex-recipes/symfony/twig-bundle/3.3/templates/base.html.twig
T
Ryan Weaver cf47b10f13 Moving scripts to <head> by default
With <script defer, execution is still done after page load, but is more performant
and works will with Turbo
2021-01-15 14:00:20 -05:00

14 lines
303 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}{% endblock %}
{% block javascripts %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>