chore: minor formatting

This commit is contained in:
Cory Dransfeldt 2024-02-09 09:46:15 -08:00
parent 7f6687f347
commit bb111f93e0
No known key found for this signature in database
2 changed files with 18 additions and 13 deletions

View file

@ -162,5 +162,6 @@ export const postStats = (collectionApi) => {
statsObject.totalWordCount = totalWordCount
statsObject.totalCodeBlockCount = totalCodeBlockCount
statsObject.highPostCount = highPostCount
return statsObject
}

View file

@ -6,16 +6,20 @@ pagination:
reverse: true
alias: posts
---
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
<article class="h-entry">
<a class="no-underline" href="{{ post.url }}">
<h2 class="flex--centered">{{ post.data.title }}</h2>
</a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%m.%Y" }}
</time>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.data.post_excerpt | markdown }}
</article>
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %}
{% for post in pagination.items %}
{% if post.data.published %}
<article class="h-entry">
<a class="no-underline" href="{{ post.url }}">
<h2 class="flex--centered">{{ post.data.title }}</h2>
</a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%m.%Y" }}
</time>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.data.post_excerpt | markdown }}
</article>
{% endif %}
{% endfor %}
{% include "partials/paginator.liquid" %}