{% extends "base.html" %} {% load humanize %} {% load sanitizer %} {% load taglinks %} {% block title %} Brutaldon ({{ own_acct.username }}) - {{ user.acct }} timelime {% endblock %} {% block content %}
{% if not preferences.theme.is_brutalist %}
{% else %}
{% endif %}
Avatar {% if user.locked %} {% endif %}
{{ user.note | relink_toot | strip_html | safe }}
{% if user.acct != own_acct.acct %}
{% if relationship.requested %} {% elif not relationship.following %} {% else %} {% endif %}
{% if not relationship.muting %} {% else %} {% endif %} {% if not relationship.blocking %} {% else %} {% endif %}
{% endif %}

{% 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 %} {% endblock %}