server/views/base.twig
2020-07-12 00:42:00 +02:00

11 lines
No EOL
283 B
Twig

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %} - Forum des associations 2020</title>
{% block head %}{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
{% block script %}{% endblock %}
</body>
</html>