{% extends "blog/base.html" %} {% load i18n %} {% load markdown_deux_tags %} {% block head_title %}{% trans "Blog posts" %}{% ifnotequal page_obj.number 1 %} {% trans "page" %} {{ page_obj.number }}{% endifnotequal %}{% endblock %} {% block robots %} {% if category %} {% else %} {{ block.super }} {% endif %} {% endblock %} {% block body %}

{% trans "Blog posts" %}

{% for post in object_list %}

{{ post.title }}

{{ post.tease|markdown }}
{% endfor %} {% if is_paginated %}
{% endif %} {% endblock %}