aboutsummaryrefslogtreecommitdiff
path: root/development/libs/barrel/docs/blue-penguin/templates/index.html
blob: b8b40f4c045b73dca555d3a066c6841c441eefeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}

{% block title %}{{ SITENAME }}{% if articles_page.number != 1 %} | Page {{ articles_page.number }}{% endif %}{% endblock %}
{% block content %}
{% set date = None %}
{% for article in articles_page.object_list %}
{%   if date != article.date.date() %}
{%     set first_article_of_day = True %}
{%   else %}
{%     set first_article_of_day = False %}
{%   endif %}
{%   set date = article.date.date() %}
{%   include "article_stub.html" %}
{% endfor %}

{% include "pagination.html" %}
{% endblock %}