2017-11-06 09:59:56 +00:00
|
|
|
<!doctype html>
|
2019-04-15 13:47:08 +02:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" {% if bag('alternatives', this.alt, 'direction') == 'text-right' %}dir="rtl"{% endif %}>
|
2017-11-06 09:59:56 +00:00
|
|
|
<meta charset="utf-8">
|
2018-02-16 18:40:25 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2018-01-12 08:37:06 +01:00
|
|
|
<link rel="stylesheet" href="{{ '/static/bootstrap.css'|asseturl }}">
|
2018-02-15 19:11:16 +01:00
|
|
|
<link rel="stylesheet" href="{{ '/static/fonts/open-iconic/font/css/open-iconic-bootstrap.css'|asseturl }}">
|
|
|
|
|
2018-07-12 14:37:13 +02:00
|
|
|
<title>{% block title %}{{ this.title }}{% endblock %} | {{ _("Tor Project | Support") }}</title>
|
2018-02-21 15:30:53 +01:00
|
|
|
<body class="no-gutters" data-spy="scroll" data-target="#sidenav-topics" id="topics" data-children=".item">
|
2017-11-06 09:59:56 +00:00
|
|
|
<header>
|
2018-01-12 08:37:06 +01:00
|
|
|
{% include 'navbar.html' %}
|
2017-11-06 09:59:56 +00:00
|
|
|
</header>
|
2018-04-26 18:52:52 +02:00
|
|
|
<div class="page">
|
|
|
|
<div class="jumbotron jumbotron-fluid bg-primary text-white mb-md-5">
|
|
|
|
<div class="container-fluid text-center">
|
2018-06-25 22:37:59 +02:00
|
|
|
<h1 class="display-4 no-border font-weight-light pt-5 pb-4">{{ this.title }}</h1>
|
2018-06-21 23:08:57 +02:00
|
|
|
<!-- {% include 'search.html' %} -->
|
2018-04-26 18:52:52 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row flex-xl-nowrap">
|
|
|
|
{% include 'sidenav.html' %}
|
|
|
|
<main role="main" class="col-sm-12 col-xs-12 ml-sm-auto col-md-9 col-lg-9 {{ bag('alternatives', this.alt, 'order') }}">
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-11-06 09:59:56 +00:00
|
|
|
<footer>
|
2018-01-18 16:14:15 +01:00
|
|
|
{% include 'footer.html' %}
|
2017-11-06 09:59:56 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|
2019-04-15 13:47:08 +02:00
|
|
|
</html>
|