forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-12-08 22:08:04 -06:00
parent b6f4a33010
commit 091b66cbf7
1 changed files with 4 additions and 4 deletions

View File

@ -174,23 +174,23 @@
<div class="px-4 py-2 flex space-x-3 divide-x divide-gray-400 text-xs bg-gray-100 md:border-b md:border-gray-300">
<ul class="flex items-center space-x-3 leading-normal mb-0">
<li>
<a class="{{ 'font-bold text-red-600' if not 'comments' or not 'saved' in request.path else 'text-gray-700' }}" href="/@{{u.username}}">
<a class="{{ 'font-bold text-red-600' if request.path == '@/{{u.username}}' in request.path else 'text-gray-700' }}" href="/@{{u.username}}">
Posts <span class="text-gray-500 font-normal">{{ u.post_count }}</span>
</a>
</li>
<li>
<a class="{{ 'font-bold text-red-600' if 'comments' in request.path else 'text-gray-700' }}" href="/@{{u.username}}/comments">
<a class="{{ 'font-bold text-red-600' if request.path == '/comments' else 'text-gray-700' }}" href="/@{{u.username}}/comments">
Comments <span class="text-gray-500 font-normal">{{ u.comment_count }}</span>
</a>
</li>
{% if u.id == v.id %}
<li>
<a class="{{ 'font-bold text-red-600' if '/saved/posts' in request.path else 'text-gray-700' }}" href="/@{{u.username}}/saved/posts">
<a class="{{ 'font-bold text-red-600' if request.path == '/saved/posts' else 'text-gray-700' }}" href="/@{{u.username}}/saved/posts">
Saved Posts
</a>
</li>
<li>
<a class="{{ 'font-bold text-red-600' if '/saved/comments' in request.path else 'text-gray-700' }}" href="/@{{u.username}}/saved/comments">
<a class="{{ 'font-bold text-red-600' if request.path == '/saved/comments' else 'text-gray-700' }}" href="/@{{u.username}}/saved/comments">
Saved Comments
</a>
</li>