{% extends "base.html" %} {% load i18n static %} {% load humanize %} {% block head %} TipPy Blog {% endblock %} {% block nav %} {% include "nav.html" with ls=ls season=season %} {% endblock %} {% block body %}

TipPy Blog

Neue Nachricht

{% for post, avatar in posts %}
{{post.author.first_name}} schrieb {{post.created|naturaltime}}
{% if avatar %} Profile Pic {% else %} Profile Pic {% endif %} {{post.content|safe}}
{% endfor %}
{% endblock %}