37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% extends "base.html" %}
|
|
{% load humanize %}
|
|
|
|
{% block title %}
|
|
Brutaldon - {{ timeline_name }} timelime
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if form %}
|
|
<h1 class="title">Post</h1>
|
|
<div class="box">
|
|
{% include "main/post_minimal_partial.html" %}
|
|
</div>
|
|
<hr class="is-hidden">
|
|
{% endif %}
|
|
<h1 class="title">Your {{ timeline_name }} timeline</h1>
|
|
{% 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 %}
|
|
<hr class="is-hidden">
|
|
{% endfor %}
|
|
|
|
{% block pagination %}
|
|
<nav class="pagination is-centered" role="navigation" aria-label="pagination">
|
|
{% if prev %}
|
|
<a class="pagination-next" href="{% url 'home_prev' prev.since_id %}">Newer</a>
|
|
{% endif %}
|
|
{% if next %}
|
|
<a class="pagination-previous" href="{% url 'home_next' next.max_id %}">Older</a>
|
|
{% endif %}
|
|
</nav>
|
|
{% endblock %}
|
|
{% endblock %}
|