This commit is contained in:
Cory Dransfeldt 2023-03-13 16:26:26 -07:00
parent f9b4488920
commit 245b4d5d98
2 changed files with 4 additions and 20 deletions

View file

@ -5,16 +5,8 @@ layout: main
{% include "header.liquid" %}
<h2 class="text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{title}}</h2>
<div class="h-14 flex flex-col md:flex-row items-center text-sm">
<span>{{ date | date: "%m.%d.%Y" }}</span>
<span class="mx-1 hidden md:inline">•</span>
<span class="inline-flex flex-row">
{% for tag in tags %} {% if tag != "posts" %}
<a href="/tags/{{ tag }}" class="font-normal no-underline">
<span class="post-tag">{{ tag }}</span>
</a>
{% endif %} {% endfor %}
</span>
<div class="h-14 items-center text-sm">
{{ date | date: "%m.%d.%Y" }}
</div>
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">

View file

@ -18,16 +18,8 @@ templateEngineOverride: liquid,md
{{ post.data.title }}
</h2>
</a>
<div class="flex flex:col md:flex-row h-14 items-center text-sm">
<span>{{ post.date | date: "%m.%d.%Y" }}</span>
<span class="mx-1 hidden md:inline"></span>
<span class="inline-flex flex-row">
{% for tag in post.data.tags %} {% if tag != "posts" %}
<a href="/tags/{{ tag }}" class="font-normal no-underline">
<span class="post-tag">{{ tag }}</span>
</a>
{% endif %} {% endfor %}
</span>
<div class="h-14 items-center text-sm">
{{ post.date | date: "%m.%d.%Y" }}
</div>
<p class="mt-0">{{ post.data.post_excerpt }}</p>
<div class="mt-4 flex items-center justify-between">