From c37d6e839fa8f2016d5da0bf11ba133edf4bd727 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Sat, 18 Jan 2025 17:07:36 +0100 Subject: [PATCH] style: hide threads title on threads page --- templates/threads.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/threads.html b/templates/threads.html index a0b2d5e..ba22542 100644 --- a/templates/threads.html +++ b/templates/threads.html @@ -89,6 +89,10 @@ } main.thread { + & h2.threads-title { + display: none + } + & .card:not(:last-of-type) .card_avatar::after { content: " "; display: block; @@ -293,7 +297,7 @@
Back
-

Featured threads:

+

Featured threads:

{% for thread in threads %} {% with thread=thread, parent_id=thread.id, is_thread=threads|length > 1 %} {% include "card.html" %}