fix: reverse tag post order; refactor display to match other post pages
This commit is contained in:
parent
5d1e198140
commit
d37e9f0fa0
1 changed files with 11 additions and 6 deletions
|
@ -9,9 +9,8 @@ eleventyComputed:
|
||||||
title: '{{ tag }}'
|
title: '{{ tag }}'
|
||||||
templateEngineOverride: liquid,md
|
templateEngineOverride: liquid,md
|
||||||
---
|
---
|
||||||
|
{% assign posts = collections[tag] | reverse %}
|
||||||
{% for post in collections[tag] %}
|
{% for post in posts %}
|
||||||
|
|
||||||
<div class="mb-8 border-b border-gray-200 pb-4 dark:border-gray-700">
|
<div class="mb-8 border-b border-gray-200 pb-4 dark:border-gray-700">
|
||||||
<a class="no-underline" href="{{ post.url }}">
|
<a class="no-underline" href="{{ post.url }}">
|
||||||
<h2
|
<h2
|
||||||
|
@ -20,9 +19,15 @@ templateEngineOverride: liquid,md
|
||||||
{{ post.data.title }}
|
{{ post.data.title }}
|
||||||
</h2>
|
</h2>
|
||||||
</a>
|
</a>
|
||||||
<div class="h-14 flex items-center text-sm">
|
<div class="my-2 text-sm">
|
||||||
<span>{{ post.date | date: "%m.%d.%Y" }}</span>
|
<time class="dt-published" datetime="{{ post.date }}">
|
||||||
<span class="mx-1">•</span>
|
{{ post.date | date: "%m.%d.%Y" }}
|
||||||
|
</time>
|
||||||
|
</div>
|
||||||
|
{% if post.data.post_excerpt %}
|
||||||
|
<p class="p-summary mt-0">{{ post.data.post_excerpt | markdown }}</p>
|
||||||
|
{% endif %}
|
||||||
|
<div class="mt-4 flex items-center justify-between">
|
||||||
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more →</a>
|
<a class="flex-none font-normal no-underline" href="{{ post.url }}">Read more →</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in a new issue