remotes/1693045480750635534/spooky-22
kek7198 2021-12-04 11:17:52 -06:00
parent 1ea59f42fa
commit ef76485e97
2 changed files with 5 additions and 4 deletions

View File

@ -90,6 +90,11 @@
</ul>
<!-- Banned -->
<ul class="flex flex-col mb-0">
{% if p.club %}
<li>
<span class="badge badge-red">Country Club</span>
<li>
{% endif %}
{% if p.bannedfor and p.author.banned_by %}
<li>
<i class="fad fa-gavel fa-sm fa-fw text-red-600" data-bs-toggle="tooltip" data-bs-placement="bottom" title="" data-bs-original-title="User was banned for this post by @{{p.author.banned_by.username}}"></i>

View File

@ -321,15 +321,11 @@
{% if p.realurl(v) %}
<h1 id="post-title" class="post-title text-black font-bold font-heading text-lg md:text-3xl leading-normal mb-2">
<a {% if not v or v.newtabexternal %}target="_blank"{% endif %} rel="nofollow noopener noreferrer" href="{{p.realurl(v)}}">
{% if p.club %}
<span class="mr-1 badge badge-red uppercase">Country Club</span>
{% endif %}
{{p.realtitle(v) | safe}}
</a>
</h1>
{% else %}
<h1 id="post-title" class="post-title text-black font-bold font-heading text-lg md:text-3xl leading-normal mb-2">
{% if p.club %}<span class="mr-1 badge badge-red uppercase">Country Club</span>{% endif %}
{{p.realtitle(v) | safe}}
</h1>
{% endif %}