mirror of
https://github.com/torproject/community.git
synced 2024-11-27 03:30:33 +00:00
24 lines
719 B
HTML
24 lines
719 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' %}
|
|
{% 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>
|