simpler
This commit is contained in:
parent
f9b4488920
commit
245b4d5d98
2 changed files with 4 additions and 20 deletions
|
@ -5,16 +5,8 @@ layout: main
|
||||||
{% include "header.liquid" %}
|
{% include "header.liquid" %}
|
||||||
|
|
||||||
<h2 class="text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{title}}</h2>
|
<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">
|
<div class="h-14 items-center text-sm">
|
||||||
<span>{{ date | date: "%m.%d.%Y" }}</span>
|
{{ date | date: "%m.%d.%Y" }}
|
||||||
<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>
|
</div>
|
||||||
|
|
||||||
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
<div class="prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
||||||
|
|
|
@ -18,16 +18,8 @@ templateEngineOverride: liquid,md
|
||||||
{{ post.data.title }}
|
{{ post.data.title }}
|
||||||
</h2>
|
</h2>
|
||||||
</a>
|
</a>
|
||||||
<div class="flex flex:col md:flex-row h-14 items-center text-sm">
|
<div class="h-14 items-center text-sm">
|
||||||
<span>{{ post.date | date: "%m.%d.%Y" }}</span>
|
{{ post.date | date: "%m.%d.%Y" }}
|
||||||
<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>
|
</div>
|
||||||
<p class="mt-0">{{ post.data.post_excerpt }}</p>
|
<p class="mt-0">{{ post.data.post_excerpt }}</p>
|
||||||
<div class="mt-4 flex items-center justify-between">
|
<div class="mt-4 flex items-center justify-between">
|
||||||
|
|
Reference in a new issue