remotes/1693045480750635534/spooky-22
kek7198 2021-12-06 09:56:43 -06:00
parent d3e05a6851
commit b693f131be
1 changed files with 9 additions and 1 deletions

View File

@ -1,7 +1,15 @@
<ul class="flex items-center text-sm text-gray-500 mb-0">
{% if p.realbody(v) and '/post/' not in request.full_path %}
<li>
<button class="hover:text-gray-400 transform" onclick="expandText('{{p.id}}'); this.classList.toggle('rotate-180')">
<i class="fas fa-chevron-down fa-fw"></i>
</button>
</li>
{% endif %}
<li class="mr-5">
<a {% if v %}href="{{p.permalink}}"{% else %}href="/logged_out{{p.permalink}}"{% endif %} class="text-gray-500 hover:text-gray-400">
<i class="fas fa-comment-dots fa-fw mr-2"></i>{{ p.comment_count }} comment{{ '' if p.comment_count == 1 else 's' }}
<i class="fas fa-comment-dots fa-fw mr-2"></i>{{ p.comment_count }}
<span class="hidden sm:inline-block">comment{{ '' if p.comment_count == 1 else 's' }}</span>
<span class="text-info hidden new-comments"></span>
</a>
</li>