mirror of
https://github.com/torproject/community.git
synced 2024-11-27 11:40:28 +00:00
22 lines
523 B
HTML
22 lines
523 B
HTML
<!doctype html>
|
|
{% 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, 'order') }}">
|
|
{% include this.html %}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
{% include 'footer.html' %}
|
|
</footer>
|
|
</body>
|