summaryrefslogtreecommitdiff
path: root/template/news.html.j2
blob: 421dbaf1a387c001df9101418d72b93030f33a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "common/base.j2" %}
{% block body_content %}

  <div class="container">
    <div class="col">
      <h1>News</h1>

      {% include "news/2018-04.inc" %}
      {% include "news/2017-10.inc" %}
      {# include "news/2017-08.inc" #}
      {# include "news/2017-04.inc" #}
      {# include "news/2017-03.inc" #}
      {# include "news/2017-02.inc" #}
      {% include "news/2017-01.inc" %}

      <a href="old-news.html"><h3>{{ _("More news")}}</h3></a>
    </div>
  </div>

{% endblock body_content %}