Skip to content
Snippets Groups Projects
index.html 569 B
{% extends "base.html" %}

{% 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" %}
{%- else %}

                <div class="post text pinned">
                    <h1>No Posts</h1>
                    <p>Nothing here yet!</p>
                </div>
{% endfor %}
{% include "pagination.html" %}
{% endblock %}