summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
Diffstat (limited to 'news')
-rw-r--r--news/index.html.j228
1 files changed, 28 insertions, 0 deletions
diff --git a/news/index.html.j2 b/news/index.html.j2
new file mode 100644
index 00000000..cffcaf98
--- /dev/null
+++ b/news/index.html.j2
@@ -0,0 +1,28 @@
+{% extends "common/base.j2" %}
+{% block body_content %}
+ {% import 'inc/news.macro.j2' as news %}
+ <div class="container-fluid">
+ <div class="container">
+ <article>
+ <div class="row">
+ <div class="container text-center">
+ <h1>{{ _("News") }}<a name="news"></a></h1>
+ <section>
+ <p>
+ News posts published by Taler about changes related to
+ GNUnet, releases, and events &#8211; <a href="{{ url_localized('rss.xml')}}">subscribe to our RSS feed</a>
+ </p>
+ </section>
+ </div>
+ </div>
+ <div class="row">
+ {% for item in newsdata %}
+ <div class="col-lg-4">
+ {{ news.newspreview(item) }}
+ </div>
+ {% endfor %}
+ </div>
+ </article>
+ </div>
+ </div>
+{% endblock body_content %}