2017-11-06 09:59:56 +00:00
|
|
|
<!doctype html>
|
|
|
|
<meta charset="utf-8">
|
2017-12-14 21:32:56 +00:00
|
|
|
<link rel="stylesheet" href="{{ '/static/bootstrap.css'|url }}">
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<body class="no-gutters">
|
2017-11-06 09:59:56 +00:00
|
|
|
<header>
|
2017-12-15 19:02:13 +00:00
|
|
|
<nav class="navbar no-background navbar-expand-lg navbar-dark fixed-top bg-primary">
|
2017-12-14 21:32:56 +00:00
|
|
|
<a class="navbar-brand" href="/">
|
|
|
|
<img src="{{ '/static/images/tor-logo.svg'|url }}" >
|
|
|
|
<span class="sr-only">Tor Logo</span>
|
|
|
|
</a>
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse justify-content-md-center" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav">
|
|
|
|
{% for id, item in bag('menu').items() %}
|
|
|
|
<li{% if this.is_child_of(item.path) %} class="nav-item active" {% else %} class="nav-item"{% endif %}>
|
2017-12-15 19:02:13 +00:00
|
|
|
<a class="display-6 font-weight-light nav-link" href="{{ item.path }}">{{ item.label }}
|
2017-12-14 21:32:56 +00:00
|
|
|
{% if this.is_child_of(item.path) %}
|
|
|
|
<span class="sr-only">(current)</span>
|
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2017-12-15 19:02:13 +00:00
|
|
|
<a class="btn-lg text-primary btn-outline-dark bg-white btn-light offset-md-1">Download Tor Browser</a>
|
2017-12-14 21:32:56 +00:00
|
|
|
</div>
|
|
|
|
|
2017-11-06 09:59:56 +00:00
|
|
|
</nav>
|
|
|
|
</header>
|
2017-12-14 21:32:56 +00:00
|
|
|
{% block body %}{% endblock %}
|
2017-11-06 09:59:56 +00:00
|
|
|
<footer>
|
|
|
|
© Copyright 2017 by Tor Project.
|
2017-12-14 21:32:56 +00:00
|
|
|
<script src="{{ '/static/js/jquery-3.2.1.min.js'|url }}" ></script>
|
|
|
|
<script src="{{ '/static/js/popper.min.js'|url }}" ></script>
|
2017-12-15 19:02:13 +00:00
|
|
|
<script src="{{ '/static/js/bootstrap.bundle.min.js'|url }}" ></script>
|
2017-11-06 09:59:56 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|