2
0
mirror of https://github.com/jfmcbrayer/brutaldon synced 2025-02-05 01:58:05 +01:00
2018-04-24 09:12:13 -04:00

19 lines
584 B
HTML

{% extends "base.html" %}
{% load humanize %}
{% block title %}
Brutaldon - {{ timeline }} timelime
{% endblock %}
{% block content %}
<h1 class="title">Your {{ timeline }} timeline</h1>
{% for toot in toots %}
{% if toot.reblog %}
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.username reblog_icon=toot.account.avatar %}
{% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %}
<hr class="is-hidden">
{% endfor %}
{% endblock %}