community/templates/layout.html

22 lines
523 B
HTML
Raw Normal View History

2019-03-13 16:35:58 +00:00
<!doctype html>
2019-07-01 13:27:38 +00:00
{% include 'meta.html' %}
2019-03-13 16:35:58 +00:00
<body class="no-gutters">
<header>
{% include 'navbar.html' %}
</header>
<div class="page">
{% include 'header.html' %}
2019-03-15 15:54:59 +00:00
{% include 'pagenav.html' %}
2019-03-13 16:35:58 +00:00
<div class="container-fluid">
<div class="row flex-xl-nowrap">
<main role="main" class="mx-auto col-12 {{ bag('alternatives', this.alt, 'order') }}">
{% include this.html %}
</main>
</div>
</div>
</div>
<footer>
{% include 'footer.html' %}
</footer>
</body>