remotes/1693045480750635534/spooky-22
kek7198 2021-12-05 15:10:13 -06:00
parent 4fc647d4fd
commit 305888127f
2 changed files with 15 additions and 5 deletions

View File

@ -318,17 +318,22 @@
</div> </div>
<!-- Title --> <!-- Title -->
{% if p.realurl(v) %}
<h1 id="post-title" class="post-title font-bold font-heading text-lg md:text-3xl leading-normal mb-2"> <h1 id="post-title" class="post-title font-bold font-heading text-lg md:text-3xl leading-normal mb-2">
{% if p.club %}
<span class="badge badge-yellow font-sans-serif">Country Club</span>
{% endif %}
{% if p.flair %}
<span class="badge badge-blue font-sans-serif">
{{p.flair | safe}}
</span>
{% endif %}
{% if p.realurl(v) %}
<a {% if not v or v.newtabexternal %}target="_blank"{% endif %} rel="nofollow noopener noreferrer" href="{{p.realurl(v)}}" class="text-black hover:text-primary"> <a {% if not v or v.newtabexternal %}target="_blank"{% endif %} rel="nofollow noopener noreferrer" href="{{p.realurl(v)}}" class="text-black hover:text-primary">
{{p.realtitle(v) | safe}} {{p.realtitle(v) | safe}}
</a> </a>
</h1> {% else %}
{% else %}
<h1 id="post-title" class="post-title text-black font-bold font-heading text-lg md:text-3xl leading-normal mb-2">
{{p.realtitle(v) | safe}} {{p.realtitle(v) | safe}}
</h1> </h1>
{% endif %}
<!-- Body content --> <!-- Body content -->
<div id="post-body" class="post-body mb-3"> <div id="post-body" class="post-body mb-3">

View File

@ -187,6 +187,11 @@
{% if p.club %} {% if p.club %}
<span class="badge badge-yellow font-sans-serif">Country Club</span> <span class="badge badge-yellow font-sans-serif">Country Club</span>
{% endif %} {% endif %}
{% if p.flair %}
<span class="badge badge-blue font-sans-serif">
{{p.flair | safe}}
</span>
{% endif %}
{{p.realtitle(v) | safe}} {{p.realtitle(v) | safe}}
</a> </a>
</h5> </h5>