From 3782d6cd2ffb70f877466d40bd2c9bb60ca31592 Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Mon, 24 Sep 2018 10:48:25 -0400 Subject: [PATCH] Fix formatting of timeline template --- brutaldon/templates/main/timeline.html | 66 +++++++++++++------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/brutaldon/templates/main/timeline.html b/brutaldon/templates/main/timeline.html index c2ed8df..2f8f200 100644 --- a/brutaldon/templates/main/timeline.html +++ b/brutaldon/templates/main/timeline.html @@ -3,7 +3,7 @@ {% load static %} {% block title %} -Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime + Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime {% endblock %} {% block page_scripts %} @@ -13,43 +13,43 @@ Brutaldon ({{ own_acct.username }}) - {{ timeline_name }} timelime {% endblock %} {% block content %} -{% if form %} -

Post

-
- {% include "main/post_minimal_partial.html" %} -
- -{% endif %} -

Your {{ timeline_name }} timeline

-{% 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_static %} -{% else %} -{% include "main/toot_partial.html" with toot=toot reblog=False %} -{% endif %} - -{% endfor %} + {% if form %} +

Post

+
+ {% include "main/post_minimal_partial.html" %} +
+ + {% endif %} +

Your {{ timeline_name }} timeline

+ {% 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_static %} + {% else %} + {% include "main/toot_partial.html" with toot=toot reblog=False %} + {% endif %} + + {% endfor %} -{% block pagination %} - -{% endblock %} + {% block pagination %} + + {% endblock %} {% endblock %} {% block page_scripts_inline %} {% endblock %}