{% extends "base.html" %} {% load humanize %} {% load static %} {% block title %} Brutaldon - {{ timeline_name }} timelime {% endblock %} {% block page_scripts %} {% endblock %} {% block content %} {% if form %}

Post

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

Your {{ timeline_name }} timeline

{% for toot in toots %} {% if toot.reblog %} {% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %} {% else %} {% include "main/toot_partial.html" with toot=toot reblog=False %} {% endif %} {% endfor %} {% block pagination %} {% endblock %} {% endblock %} {% block page_scripts_inline %} {% endblock %}