1
0
mirror of synced 2026-01-16 18:01:39 -05:00
Files
docs/layouts/default.html
2020-09-28 10:06:04 -07:00

21 lines
449 B
HTML

<!doctype html>
<html lang="{{currentLanguage}}">
{% include head %}
<body class="d-lg-flex">
{% include sidebar %}
<main class="width-full">
{% include header %}
{% include deprecation-banner %}
{% if page.relativePath == 'index.md' %}
{% include landing %}
{% else %}
{% include article %}
{% endif %}
{% include support %}
{% include footer %}
</main>
</body>
</html>