fix: styles

This commit is contained in:
Cory Dransfeldt 2024-09-16 19:12:12 -07:00
parent de2dca0810
commit 2b4e2ab4d3
No known key found for this signature in database
12 changed files with 20 additions and 28 deletions

View file

@ -10,7 +10,7 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
<div class="posts-wrapper">
{% for post in pagination.items %}
<article>
<time>{{ post.date | date: "%B %e, %Y" }}</time>
<time datetime="{{ post.date }}">{{ post.date | date: "%B %e, %Y" }}</time>
<a href="{{ post.slug }}">
<h3>{{ post.title }}</h3>
</a>

View file

@ -8,7 +8,7 @@ permalink: "{{ post.slug }}/index.html"
schema: blog
---
<article class="standalone">
<time>{{ post.date | date: "%B %e, %Y" }}</time>
<time datetime="{{ post.date }}">{{ post.date | date: "%B %e, %Y" }}</time>
<h3>{{ post.title }}</h3>
<div>
{% render "partials/blocks/banners/old-post.liquid", date:post.date %}