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" %}