homepage/source/_layouts/internal.html.twig
2018-07-18 21:48:17 +03:00

30 lines
570 B
Twig

<!DOCTYPE html>
<html>
<head>
{% include 'head.twig' %}
<link rel="stylesheet" href="/static/layout_internal.css?v={{ date().timestamp }}">
{% block css %}{% endblock %}
</head>
<body>
{% include 'adv.twig' %}
<div class="page">
{% include 'navigation.twig' %}
<main class="content">
{% block content %}{% endblock %}
</main>
</div>
{% include 'counters.twig' %}
<script async src="/static/layout_internal.js?v={{ date().timestamp }}"></script>
{% block js %}{% endblock %}
{% include 'font-awesome.twig' %}
</body>
</html>