website/templates/base.html.twig

23 lines
679 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{% if nineties %} class="nineties"{% endif %}>
<div class="nineties-toggle">{% if nineties %}My eyes hurt{% else %}Take me back in time{% endif %}</div>
<div class="container">
{% block content %}{% endblock %}
{% block extrahtml %}{% endblock %}
</div>
</body>
</html>