Add CWs to toots in timeline
This commit is contained in:
parent
f78d24ad07
commit
b3e0eefba4
|
@ -22,9 +22,16 @@
|
||||||
<strong>{{ toot.account.display_name }}</strong>
|
<strong>{{ toot.account.display_name }}</strong>
|
||||||
<small>@{{ toot.account.username }}</small>
|
<small>@{{ toot.account.username }}</small>
|
||||||
<small>{{ toot.created_at |naturaltime }}</small>
|
<small>{{ toot.created_at |naturaltime }}</small>
|
||||||
<br>
|
|
||||||
{{ toot.content | safe }}
|
|
||||||
</p>
|
</p>
|
||||||
|
{% if toot.spoiler_text %}
|
||||||
|
<p>
|
||||||
|
<strong>{{ toot.spoiler_text }} </strong>
|
||||||
|
</p>
|
||||||
|
{% endif %}
|
||||||
|
<div>
|
||||||
|
{{ toot.content | safe }}
|
||||||
|
</div>
|
||||||
|
|
||||||
{% if toot.media_attachments %}
|
{% if toot.media_attachments %}
|
||||||
<div class="level">
|
<div class="level">
|
||||||
<div class="level-left">
|
<div class="level-left">
|
||||||
|
@ -42,6 +49,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
<p><br></p>
|
||||||
</div>
|
</div>
|
||||||
<nav class="level is-mobile">
|
<nav class="level is-mobile">
|
||||||
<div class="level-left">
|
<div class="level-left">
|
||||||
|
|
Loading…
Reference in New Issue