homepage/source/_layouts/internal.html.twig

28 lines
420 B
Twig

<!DOCTYPE html>
<html>
<head>
{% include 'head.twig' %}
</head>
<body>
<div class="page">
{% include 'navigation.twig' %}
<main class="content">
{% block content %}{% endblock %}
</main>
</div>
{% include 'counters.twig' %}
<script src="/static/layout_internal.js?v={{ date().timestamp }}"></script>
{% block js %}
{# extra js scripts here #}
{% endblock %}
</body>
</html>