{% extends "base.html" %} {% load i18n %} {% load thumbnail %} {% block title %}{{ block.super }} :: Blog {% endblock %} {% block list_of_items %}

{{ site_name }} blog

{% blocktrans %}Want to send a text or suggestions for the blog?{% endblocktrans %} {% blocktrans %}Contact us{% endblocktrans %}.
{% for post in post_list %}
Card image

{% if post.author.name != "Empty user" %} {{ post.author.name }}, {% endif %} {{ post.created_on}}

{{ post.title }}

{{post.excerpt | safe }}

{% endfor %}
{% include "blog_paginator.html" %}
{% endblock list_of_items %}