website/templates/base.html.twig

23 lines
612 B
Twig

<!DOCTYPE html>
<html class="h-100">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}{% if block("title") is not empty %} :: {% endif %}Jeroen De Meerleer</title>
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head>
<body class="d-flex flex-column h-100">
{% block content %}{% endblock %}
{% block extrahtml %}{% endblock %}
<footer class="footer mt-auto py-2">
{% block footer %}{% endblock %}
</footer>
</body>
</html>