community/templates/layout.html
2024-10-14 11:45:17 -04:00

25 lines
764 B
HTML

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ this.alt }}" {% if bag('alternatives', this.alt, 'direction') == 'text-right' %}dir="rtl"{% endif %}>
{% include 'meta.html' %}
<body class="no-gutters">
<header>
{% include 'navbar.html' %}
</header>
{% include 'banner.html' ignore missing %}
<div class="page">
{% include 'header.html' %}
{% include 'pagenav.html' %}
{% block pathbar %}{% endblock %}
<div class="container-fluid">
<div class="row flex-xl-nowrap">
<main role="main" class="mx-auto col-12 {{ bag('alternatives', this.alt, 'direction') }}">
{% include this.html %}
</main>
</div>
</div>
</div>
<footer>
{% include 'footer.html' %}
</footer>
</body>