{% extends "base.html" %} {% load humanize %} {% load static %} {% load cache %} {% block title %} Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime {% endblock %} {% block page_scripts %} {% if not fullbrutalism %} {% endif %} {% endblock %} {% block content %} {% if form %}

Post

{% include "main/post_minimal_partial.html" %}
{% endif %}

Your {{ timeline_name }} timeline

{% for toot in toots %} {% cache 600 toot_partial toot.id %} {% if toot.reblog %} {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar_static %} {% else %} {% include "main/toot_partial.html" with toot=toot reblog=False %} {% endif %} {% endcache %} {% endfor %} {% block pagination %}
{% if next %}

Older

{% endif %} {% if prev %}

Newer

{% endif %}
{% endblock %}
{% endblock %} {% block page_scripts_inline %} {% endblock %}