hydra-sql/templates/base.html.twig
rudy 9c746638a3
Some checks failed
Cadoles/hydra-sql/pipeline/pr-develop There was a failure building this commit
traductions, sentry, form, mariadb, assets
2022-12-13 15:46:24 +01:00

20 lines
524 B
Twig

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('bootstrap-css') }}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('bootstrap-js') }}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
</html>