chore: update deps
This commit is contained in:
parent
a8f1ad9aa7
commit
bab1d94c35
4 changed files with 32 additions and 55 deletions
|
@ -9,15 +9,11 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
|
|||
---
|
||||
<div class="posts-wrapper">
|
||||
{% for post in pagination.items %}
|
||||
<article class="h-entry">
|
||||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%B %e, %Y" }}
|
||||
</time>
|
||||
<article>
|
||||
<time>{{ post.date | date: "%B %e, %Y" }}</time>
|
||||
<a href="{{ post.slug }}">
|
||||
<h3>{{ post.title }}</h3>
|
||||
</a>
|
||||
<span class="p-author h-card hidden">{{ globals.site_name }}</span>
|
||||
<div class="p-summary hidden">{{ post.description }}</div>
|
||||
<p>{{ post.description }}</p>
|
||||
</article>
|
||||
{% endfor %}
|
||||
|
|
|
@ -7,14 +7,10 @@ pagination:
|
|||
permalink: "{{ post.slug }}/index.html"
|
||||
schema: blog
|
||||
---
|
||||
<article class="h-entry standalone">
|
||||
<time class="dt-published" datetime="{{ date }}">
|
||||
{{ post.date | date: "%B %e, %Y" }}
|
||||
</time>
|
||||
<h3 class="p-name">{{ post.title }}</h3>
|
||||
<span class="p-author h-card hidden">{{ globals.author }}</span>
|
||||
<div class="p-summary hidden">{{ post.description }}</div>
|
||||
<div class="e-content">
|
||||
<article class="standalone">
|
||||
<time>{{ post.date | date: "%B %e, %Y" }}</time>
|
||||
<h3>{{ post.title }}</h3>
|
||||
<div>
|
||||
{% render "partials/blocks/banners/old-post.liquid", date:post.date %}
|
||||
{%- if post.image -%}
|
||||
<img
|
||||
|
|
Reference in a new issue