aboutsummaryrefslogtreecommitdiff
path: root/template/roadmap.html.j2
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-06-19 14:52:19 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-06-19 14:52:19 +0200
commit3c131ac1f683f615b9d2d134681fe592e6ce5696 (patch)
treeaff4aca1aba7d463b52d6e7ee6af90a00cc54c8e /template/roadmap.html.j2
parent8c6bbe3caabfef85b1e635fd90224652e0f2f5fc (diff)
downloadwww-3c131ac1f683f615b9d2d134681fe592e6ce5696.tar.gz
www-3c131ac1f683f615b9d2d134681fe592e6ce5696.zip
add timeline css; add roadmap; modify news
Diffstat (limited to 'template/roadmap.html.j2')
-rw-r--r--template/roadmap.html.j233
1 files changed, 33 insertions, 0 deletions
diff --git a/template/roadmap.html.j2 b/template/roadmap.html.j2
new file mode 100644
index 00000000..e9e5ca8a
--- /dev/null
+++ b/template/roadmap.html.j2
@@ -0,0 +1,33 @@
1{% extends "common/base.j2" %}
2{% block body_content %}
3<div class="container">
4 <div class="row">
5 <div class="col-lg-6">
6 <div class="container text-center">
7 <h1>{{ _("Roadmap") }}</h1>
8 <section>
9 <p>
10 This is our roadmap.
11 </p>
12 </section>
13 </div>
14
15 <ul class="timeline">
16 <li>
17 <b>0.13.0</b>
18 <i>31.6.2020, 2020</i>
19 <p>This release will include...</p>
20 </li>
21 <li>
22 <b>0.14.0</b>
23 <i>2021</i>
24 <p>This release will include...</p>
25 </li>
26 </ul>
27 </div>
28 <div class="col-lg-6">
29 </div>
30 </div>
31</div>
32
33{% endblock body_content %}