2018-04-24 00:16:22 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load humanize %}
|
|
|
|
|
2018-04-24 14:09:16 +02:00
|
|
|
{% block title %}
|
|
|
|
Brutaldon - {{ timeline }} timelime
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-04-24 00:16:22 +02:00
|
|
|
{% block content %}
|
2018-04-30 14:58:10 +02:00
|
|
|
<h1 class="title">Post</h1>
|
|
|
|
<div class="box">
|
|
|
|
{% include "main/post_partial.html" %}
|
|
|
|
</div>
|
|
|
|
<hr class="is-hidden">
|
2018-04-30 20:31:59 +02:00
|
|
|
|
2018-04-24 14:09:16 +02:00
|
|
|
<h1 class="title">Your {{ timeline }} timeline</h1>
|
|
|
|
{% for toot in toots %}
|
2018-04-26 17:17:20 +02:00
|
|
|
<div class="box">
|
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 %}
|
2018-04-26 17:17:20 +02:00
|
|
|
</div>
|
2018-04-24 14:09:16 +02:00
|
|
|
<hr class="is-hidden">
|
|
|
|
{% endfor %}
|
2018-04-24 18:40:33 +02:00
|
|
|
|
|
|
|
<nav class="pagination" role="navigation" aria-label="pagination">
|
|
|
|
<a class="pagination-previous"
|
|
|
|
title="This is the first page" disabled>Previous</a>
|
|
|
|
<a class="pagination-next">Next page</a>
|
|
|
|
<ul class="pagination-list">
|
|
|
|
<li>
|
|
|
|
<a class="pagination-link is-current" aria-label="Page 1"
|
|
|
|
aria-current="page">1</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a class="pagination-link" aria-label="Goto page 2">2</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a class="pagination-link" aria-label="Goto page 3">3</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
2018-04-24 00:16:22 +02:00
|
|
|
{% endblock %}
|