{% extends "base.html" %} {% block title %}{{ category|striptags }}{% endblock %} {% block content %}
Latest
{% set i = 0 %} {% for article in articles_page.object_list %} {% if i == 0 %}
{% if article.cover or article.thumbnail %}
{% if article.cover %} {{ article.title }} {% elif article.thumbnail %} {{ article.title }} {% endif %}
{% endif %}
{% elif i < 3 %} {% if i == 1 %}
{% endif %} {% if i == 2 %}
{% endif %} {% else %} {% if i % 3 == 0 %}
{% endif %} {% if i % 3 == 2 %}
{% endif %} {% endif %} {% set i = i + 1 %} {% endfor %} {% if articles_page.object_list|length % 3 != 0 %}
{% endif %} {% include "pagination.html" %} {% endblock %}