mirror of
http://git.carcosa.net/jmcbray/brutaldon.git
synced 2024-11-27 09:10:08 -05:00
Fix one more place where I didn't update templates
This commit is contained in:
parent
b0a2657296
commit
e9097a950d
@ -4,12 +4,12 @@
|
|||||||
{% load taglinks %}
|
{% load taglinks %}
|
||||||
|
|
||||||
{% block title %}
|
{% block title %}
|
||||||
Brutaldon - {{ timeline }} timelime
|
Brutaldon - {{ timeline }} timelime
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
{% if not fullbrutalism %}
|
{% if not fullbrutalism %}
|
||||||
<div class="card-header" style="background-image: url({{ user.header }});">
|
<div class="card-header" style="background-image: url({{ user.header }});">
|
||||||
{% else %}
|
{% else %}
|
||||||
@ -34,13 +34,11 @@
|
|||||||
<br>
|
<br>
|
||||||
|
|
||||||
{% for toot in toots %}
|
{% for toot in toots %}
|
||||||
<div class="box">
|
|
||||||
{% if toot.reblog %}
|
{% if toot.reblog %}
|
||||||
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
|
{% include "main/toot_partial.html" with toot=toot.reblog reblog=True reblog_by=toot.account.acct reblog_icon=toot.account.avatar %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include "main/toot_partial.html" with toot=toot reblog=False %}
|
{% include "main/toot_partial.html" with toot=toot reblog=False %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
|
||||||
<hr class="is-hidden">
|
<hr class="is-hidden">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
@ -61,4 +59,4 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user