From 4350d866b0160274c74a5b033b588305145798d7 Mon Sep 17 00:00:00 2001 From: Zankaria Date: Thu, 5 Sep 2024 16:43:12 +0200 Subject: [PATCH] Revert "fileinfo.html: use semantic html tags figure and figcaption for files" This reverts commit a1d5f755b1e79d83c0f11645d485c37276fac01f. --- templates/post/fileinfo.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index cab93709..a2384fe9 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -3,11 +3,11 @@ {% else %}
{% for file in post.files %} -
+
{% if file.file == 'deleted' %} {% else %} -
File: {{ file.file }} +

File: {{ file.file }} ( {% if file.thumb == 'spoiler' %} {% trans %}Spoiler Image{% endtrans %}, @@ -28,10 +28,10 @@ {% endif %} ) {% include "post/image_identification.html" %} - {% include "post/file_controls.html" %}

+ {% include "post/file_controls.html" %}

{% include "post/image.html" with {'post':file} %} {% endif %} -
+
{% endfor %} {% endif %}