website/templates/base.html.twig

23 lines
612 B
Twig
Raw Normal View History

2023-06-27 12:10:51 +02:00
<!DOCTYPE html>
<html class="h-100">
2021-08-05 13:51:44 +02:00
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-06-27 12:10:51 +02:00
<title>{% block title %}{% endblock %}{% if block("title") is not empty %} :: {% endif %}Jeroen De Meerleer</title>
2023-03-22 14:02:04 +01:00
2021-08-05 13:51:44 +02:00
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head>
<body class="d-flex flex-column h-100">
2023-03-21 15:36:26 +01:00
{% block content %}{% endblock %}
{% block extrahtml %}{% endblock %}
<footer class="footer mt-auto py-2">
2023-03-22 14:44:40 +01:00
{% block footer %}{% endblock %}
2023-03-21 15:36:26 +01:00
</footer>
2021-08-05 13:51:44 +02:00
</body>
</html>