aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-02-15 11:12:49 +0000
committerng0 <ng0@n0.is>2019-02-15 11:12:49 +0000
commit1ae3b841583bf1efbece435a2ea4f79dae640488 (patch)
tree3347ca310470dae0b30dac354ee76d0941d1ee35
parent1125bc561a22dd01d4a0e91b4a3650fe16c735a6 (diff)
downloadwww-1ae3b841583bf1efbece435a2ea4f79dae640488.tar.gz
www-1ae3b841583bf1efbece435a2ea4f79dae640488.zip
attempt to make tutorial page more html5 conformant
-rw-r--r--tutorial.html.j251
1 files changed, 23 insertions, 28 deletions
diff --git a/tutorial.html.j2 b/tutorial.html.j2
index a346b27c..a31c6cf4 100644
--- a/tutorial.html.j2
+++ b/tutorial.html.j2
@@ -1,32 +1,27 @@
1{% extends "common/base.j2" %} 1{% extends "common/base.j2" %}
2{% block body_content %} 2{% block body_content %}
3<div class="container"> 3<article>
4 4 <div class="container-fluid">
5<h2>{{ _("Tutorial") }}</h2> 5 <header>
6 6 <h1>{{ _("Tutorials") }}</h2>
7 7 </header>
8<div class="container-fluid adorn_h3_bracket c_acronym"> 8 <p class="col-lg-3">
9 <div class="container"> 9 {% trans %}
10 <div class="row"> 10 This page holds various tutorials for GNUnet. Some of them are not
11 <div class="col-lg-3"> 11 complete, but we find them useful regardless of their state.
12 <a href="tutorial-ubuntu1804.html">GNUnet on Ubuntu 18.04</a> 12 {% endtrans %}
13 </div> 13 </p>
14 <div class="col-lg-3"> 14 <p class="col-lg-3">
15 <a href="tutorial-archpi.html">GNUnet on Arch-Pi</a> 15 <ul>
16 </div> 16 <li><a href="tutorial-ubuntu1804.html">GNUnet on Ubuntu 18.04</a></li>
17 <div class="col-lg-3"> 17 <li><a href="tutorial-archpi.html">GNUnet on Arch-Pi</a></li>
18 <a href="tutorial-debian9.html">GNUnet on Debian 9</a> 18 <li><a href="tutorial-debian9.html">GNUnet on Debian 9</a></li>
19 </div> 19 <li><a href="tutorial-macos.html">GNUnet on macOS</a></li>
20 <div class="col-lg-3"> 20 </ul>
21 <a href="tutorial-macos.html">GNUnet on macOS</a> 21 <ul>
22 </div> 22 <li><a href="https://tutorial.gnunet.org/">C Coding Tutorial for GNUnet</a></li>
23 <div class="col-lg-3"> 23 </ul>
24 <a href="https://tutorial.gnunet.org/">C Coding Tutorial for GNUnet</a> 24 </p>
25 </div>
26 </div>
27 </div> 25 </div>
28</div> 26</article>
29
30
31</div>
32{% endblock body_content %} 27{% endblock body_content %}