23 lines
552 B
Twig
23 lines
552 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>Jeroen De Meerleer{% if block("title") is not empty %} :: {% block title %}{% endblock %}{% endif %}</title>
|
|
|
|
{% block styles %}{% endblock %}
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{% block content %}{% endblock %}
|
|
{% block extrahtml %}{% endblock %}
|
|
<footer class="footer">
|
|
{% block footer %}{% endblock %}
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|