2
0
mirror of https://github.com/jfmcbrayer/brutaldon synced 2025-01-11 14:34:00 +01:00
brutaldon-interfaccia-web-m.../brutaldon/templates/main/timeline.html

19 lines
580 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% load humanize %}
{% block title %}
Brutaldon - {{ timeline }} timelime
{% endblock %}
{% block content %}
<h1 class="title">Your {{ timeline }} timeline</h1>
{% for toot in toots %}
2018-04-24 15:12:13 +02:00
{% if toot.reblog %}
2018-04-24 15:24:06 +02:00
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
2018-04-24 15:12:13 +02:00
{% else %}
{% include "main/toot_partial.html" with toot=toot reblog=False %}
{% endif %}
<hr class="is-hidden">
{% endfor %}
{% endblock %}