style: hide threads title on threads page

This commit is contained in:
Ayo Ayco 2025-01-18 17:07:36 +01:00
parent cb22799658
commit c37d6e839f

View file

@ -89,6 +89,10 @@
} }
main.thread { main.thread {
& h2.threads-title {
display: none
}
& .card:not(:last-of-type) .card_avatar::after { & .card:not(:last-of-type) .card_avatar::after {
content: " "; content: " ";
display: block; display: block;
@ -293,7 +297,7 @@
<div class="back"> <div class="back">
<a href="{{url_for('threads.home')}}">Back</a> <a href="{{url_for('threads.home')}}">Back</a>
</div> </div>
<h2>Featured threads:</h2> <h2 class="threads-title">Featured threads:</h2>
{% for thread in threads %} {% for thread in threads %}
{% with thread=thread, parent_id=thread.id, is_thread=threads|length > 1 %} {% with thread=thread, parent_id=thread.id, is_thread=threads|length > 1 %}
{% include "card.html" %} {% include "card.html" %}