community/templates/layout.html
kez a5e8e1cc80 remove explicit banner include
something is already including the banner on community but i can't find it. this makes the banner show up twice.
2022-10-19 13:13:26 -07:00

23 lines
681 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>
<div class="page">
{% include 'header.html' %}
{% include 'pagenav.html' %}
<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>