diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-13 11:10:52 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-10-13 11:10:52 +0200 |
commit | d33d9083c974dde2c65fe454b151aa4849d5dfbe (patch) | |
tree | 925c501d702bf628a0b74aa16c668c11b9c7e301 /pyaggr3g470r/templates/home.html | |
parent | Updated README. (diff) | |
download | newspipe-d33d9083c974dde2c65fe454b151aa4849d5dfbe.tar.gz newspipe-d33d9083c974dde2c65fe454b151aa4849d5dfbe.tar.bz2 newspipe-d33d9083c974dde2c65fe454b151aa4849d5dfbe.zip |
Updated about page. Readed article title are using h3 headers and unreaded h1 headers.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r-- | pyaggr3g470r/templates/home.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index da71c881..76104e68 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -6,21 +6,29 @@ <div class="col-md-6 col-md-offset-3"><h1>{{ feed.title }}</h1></div> </div> {% for number in range(0, feed.articles[:10]|length-2, 3) %} + + <div class="row"> <div class="col-xs-6 col-sm-4 col-md-4"> - <h2>{{ feed.articles[number].title }}<h2> + {% if feed.articles[number].readed %}<h3>{% else %}<h1>{% endif %} + {{ feed.articles[number].title }}<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"> - <h2>{{ feed.articles[number+1].title }}<h2> + {% if feed.articles[number+1].readed %}<h3>{% else %}<h1>{% endif %} + {{ feed.articles[number+1].title }}<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"> - <h2>{{ feed.articles[number+2].title }}<h2> + {% if feed.articles[number+2].readed %}<h3>{% else %}<h1>{% endif %} + {{ feed.articles[number+2].title }}<h2> + {% if feed.articles[number+2].readed %}</h3>{% else %}</h1>{% endif %} <h6>{{ feed.articles[number+2].date }}</h6> </div> </div> {% endfor %} {% endfor %} </div><!-- /.container --> -{% endblock %} +{% endblock %}
\ No newline at end of file |