blob: 5cf236bfd7de279466fa3cf32e9cb359986daff4 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% macro oldnews(year) %}
<main id="maincontent">
<div class="container-fluid">
<div class="container">
<article>
<div class="row">
<div class="container text-center">
<h1>{{ _("News") + " " + (year|string) }}<a name="news"></a></h1>
<section>
<p>
{% trans %}
News posts about changes related to
GNUnet such as releases and events
{% endtrans %}
–
<a href="{{ url_localized('rss.xml') }}">{{ _("subscribe to our RSS feed") }}</a>
</p>
</section>
</div>
</div>
<div class="row">
<b>{{ year }}</b>
<ul class="timeline">
{% for item in newsdata|selectattr('date.year', 'eq', year) %}
<li>
<section class="item-preview">
<header>
<h3>{{ item['title']|e }}</h3>
<p class="item-date">
{{ item['date'] }}
</p>
</header>
<p class="item-abstract">
{{ get_abstract('news/' + item['page'], 1000) }} <br/>
[<a href="{{ url_localized('news/' + item['page']) }}" title="{{ item['date']}}">{{ _("read more") }}</a>]
</p>
</section>
</li>
{% endfor %}
</ul>
</div>
</article>
</div>
</div>
{% endmacro %}
|