style: hide threads title on threads page
This commit is contained in:
parent
cb22799658
commit
c37d6e839f
1 changed files with 5 additions and 1 deletions
|
@ -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 @@
|
|||
<div class="back">
|
||||
<a href="{{url_for('threads.home')}}">Back</a>
|
||||
</div>
|
||||
<h2>Featured threads:</h2>
|
||||
<h2 class="threads-title">Featured threads:</h2>
|
||||
{% for thread in threads %}
|
||||
{% with thread=thread, parent_id=thread.id, is_thread=threads|length > 1 %}
|
||||
{% include "card.html" %}
|
||||
|
|
Loading…
Reference in a new issue