1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-22 06:39:42 +02:00
codex.docs/src/views/layout.twig

22 lines
518 B
Twig
Raw Normal View History

2018-08-10 19:25:29 +03:00
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
<link rel="stylesheet" href="/dist/main.css" />
2018-08-10 19:25:29 +03:00
</head>
<body>
2018-09-18 13:10:44 +03:00
{% include "components/header.twig" %}
<div class="docs">
<aside class="docs__aside">
{% include "components/aside.twig" %}
</aside>
<div class="docs__content">
<div class="docs__content-inner">
{% block body %}{% endblock %}
</div>
</div>
</div>
<script src="/dist/main.bundle.js"></script>
2018-08-10 19:25:29 +03:00
</body>
</html>