mirror of
https://github.com/symfony/recipes.git
synced 2026-09-15 09:06:24 +03:00
With <script defer, execution is still done after page load, but is more performant and works will with Turbo
14 lines
303 B
Twig
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>
|