blob: 374eaea794ec6ac8b1bbca7d019e29cda441ca69 (
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
|
{% extends "layout.html" %}
{% block content %}
<div class="container">
{% for number in range(0, feed.articles|sort(attribute='date')|length-2, 3) %}
<div class="row">
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[number].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[number].id }}">{{ feed.articles[number].title }}</a><h2>
{% if feed.articles[number].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[number].date }}</h6>
</div>
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[number+1].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[number+1].id }}">{{ feed.articles[number+1].title }}</a><h2>
{% if feed.articles[number+1].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[number+1].date }}</h6>
</div>
<div class="col-xs-6 col-sm-4 col-md-4">
{% if feed.articles[number+2].readed %}<h3>{% else %}<h1>{% endif %}
<a href="/article/{{ feed.articles[number+2].id }}">{{ feed.articles[number+2].title }}</a><h2>
{% if feed.articles[number+2].readed %}</h3>{% else %}</h1>{% endif %}
<h6>{{ feed.articles[number+2].date }}</h6>
</div>
</div>
{% endfor %}
</div><!-- /.container -->
{% endblock %}
|