fix: styles
This commit is contained in:
parent
de2dca0810
commit
2b4e2ab4d3
12 changed files with 20 additions and 28 deletions
|
@ -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>
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Reference in a new issue