mirror of https://gitlab.com/brutaldon/brutaldon
Put spoilers in details/summary element.
This gives us expandable CWs without JS. On Lynx, nothing actually changes.
This commit is contained in:
parent
2895bae6bc
commit
9e1a82655e
|
@ -33,13 +33,17 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
{% if toot.spoiler_text %}
|
{% if toot.spoiler_text %}
|
||||||
<p>
|
<details>
|
||||||
<strong>{{ toot.spoiler_text }} </strong>
|
<summary><strong>{{ toot.spoiler_text }} </strong></summary>
|
||||||
</p>
|
<div class="toot">
|
||||||
{% endif %}
|
{{ toot.content | relink_toot | strip_html | safe }}
|
||||||
|
</div>
|
||||||
|
</details>
|
||||||
|
{% else %}
|
||||||
<div class="toot">
|
<div class="toot">
|
||||||
{{ toot.content | relink_toot | strip_html | safe }}
|
{{ toot.content | relink_toot | strip_html | safe }}
|
||||||
</div>
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if toot.media_attachments %}
|
{% if toot.media_attachments %}
|
||||||
<br>
|
<br>
|
||||||
|
|
Loading…
Reference in New Issue