38 lines
840 B
Twig
38 lines
840 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'head.twig' %}
|
|
<link rel="stylesheet" href="{{ hashed_asset('/static/layout_internal.css') }}">
|
|
{% block css %}{% endblock %}
|
|
{% for s in page.styles | default([]) %}
|
|
<link rel="stylesheet" href="{{ hashed_asset(s) }}">
|
|
{% endfor %}
|
|
</head>
|
|
<body>
|
|
|
|
{% include 'adv.twig' %}
|
|
|
|
<div class="page">
|
|
|
|
{% include 'navigation.twig' %}
|
|
|
|
{% block main %}
|
|
<main class="content">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
{% include 'counters.twig' %}
|
|
|
|
<script async src="{{ hashed_asset('/static/layout_internal.js') }}"></script>
|
|
{% block js %}{% endblock %}
|
|
{% for s in page.scripts | default([]) %}
|
|
<script async src="{{ hashed_asset(s) }}"></script>
|
|
{% endfor %}
|
|
|
|
{% include 'font-awesome.twig' %}
|
|
</body>
|
|
</html>
|