summaryrefslogtreecommitdiff
path: root/news/index.html.j2
blob: cffcaf9800cc5655caaad515de11dcdc95be711d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 %}