website/templates/base.html.twig

25 lines
654 B
Twig
Raw Normal View History

2021-08-05 13:51:44 +02:00
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-08-05 14:46:20 +02:00
<title>Jeroen De Meerleer{% if block("title") is not empty %} :: {% block title %}{% endblock %}{% endif %}</title>
2023-03-22 11:51:49 +01:00
2021-08-05 13:51:44 +02:00
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head>
2023-03-21 15:36:26 +01:00
<body>
{% block content %}{% endblock %}
{% block extrahtml %}{% endblock %}
<footer class="footer">
<div class="container">
<span class="text-muted">Design inspired by Dall-E 2</span>
</div>
</footer>
2021-08-05 13:51:44 +02:00
</body>
</html>