server/views/base.twig

11 lines
283 B
Twig
Raw Normal View History

2020-07-11 22:42:00 +00:00
<!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>