website/templates/base.html.twig

23 lines
679 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>
2021-08-05 13:51:44 +02:00
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head>
2021-08-06 09:51:41 +02:00
<body{% if nineties %} class="nineties"{% endif %}>
<div class="nineties-toggle">{% if nineties %}My eyes hurt{% else %}Take me back in time{% endif %}</div>
2021-08-05 13:51:44 +02:00
<div class="container">
{% block content %}{% endblock %}
{% block extrahtml %}{% endblock %}
</div>
</body>
</html>