aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/unread.html
blob: 0344263f11656c704e7e7f96c56de8442cc3ee2c (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
 {% extends "layout.html" %}
{% block content %}
<div class="container">
    {% for feed in feeds %}
        <div class="row">
            <div class="col-md-6 col-md-offset-3">
            <h1>{{ feed.title }}</h1>
            <a href="/articles/{{ feed.id }}"><i class="glyphicon glyphicon-th-list"></i></a>
            </div>
        </div>
    {% for number in range(0, feed.articles|length-2, 3) %}
        <div class="row">
            {% for n in range(number, number+3) %}
            <div class="col-xs-6 col-sm-4 col-md-4">
                 {% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %}
                     <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2>
                  {% if feed.articles[n].readed %}</h3>{% else %}</h1>{% endif %}
                <h6>{{ feed.articles[n].date }}</h6>
            </div>
            {% endfor %}
        </div>
    {% endfor %}
    {% endfor %}
</div><!-- /.container -->
{% endblock %}
bgstack15