mirror of
https://github.com/torproject/community.git
synced 2024-11-23 09:49:49 +00:00
a5e8e1cc80
something is already including the banner on community but i can't find it. this makes the banner show up twice.
23 lines
681 B
HTML
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>
|