mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-07-24 07:39:42 +02:00
* Landing + mobile adoptation * replace svg * small updates * use landing as iframe * Delete .codexdocsrc * remove unused * updates * Delete _index.twig * update header shrink in chrome * Delete .codexdocsrc * remove focus
21 lines
525 B
Twig
21 lines
525 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ config.title }}</title>
|
|
<link rel="stylesheet" href="/dist/main.css" />
|
|
</head>
|
|
<body>
|
|
{% 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>
|
|
</body>
|
|
</html>
|