From bb111f93e0d87d0fe30420dd85f38382c7efa5ee Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 9 Feb 2024 09:46:15 -0800 Subject: [PATCH] chore: minor formatting --- config/collections/index.js | 1 + src/index.html | 30 +++++++++++++++++------------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index e768c379..da234208 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -162,5 +162,6 @@ export const postStats = (collectionApi) => { statsObject.totalWordCount = totalWordCount statsObject.totalCodeBlockCount = totalCodeBlockCount statsObject.highPostCount = highPostCount + return statsObject } diff --git a/src/index.html b/src/index.html index 899afeb9..e09e9cb3 100644 --- a/src/index.html +++ b/src/index.html @@ -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 %} -
- -

{{ post.data.title }}

-
- - - - {{ post.data.post_excerpt | markdown }} -
-{% 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 %} +
+ +

{{ post.data.title }}

+
+ + + + {{ post.data.post_excerpt | markdown }} +
+ {% endif %} +{% endfor %} +{% include "partials/paginator.liquid" %}