chore: minor formatting
This commit is contained in:
parent
7f6687f347
commit
bb111f93e0
2 changed files with 18 additions and 13 deletions
|
@ -162,5 +162,6 @@ export const postStats = (collectionApi) => {
|
||||||
statsObject.totalWordCount = totalWordCount
|
statsObject.totalWordCount = totalWordCount
|
||||||
statsObject.totalCodeBlockCount = totalCodeBlockCount
|
statsObject.totalCodeBlockCount = totalCodeBlockCount
|
||||||
statsObject.highPostCount = highPostCount
|
statsObject.highPostCount = highPostCount
|
||||||
|
|
||||||
return statsObject
|
return statsObject
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,16 +6,20 @@ pagination:
|
||||||
reverse: true
|
reverse: true
|
||||||
alias: posts
|
alias: posts
|
||||||
---
|
---
|
||||||
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %} {% for post in pagination.items %} {% if post.data.published %}
|
{% if pagination.pageNumber == 0 %}{% include "partials/now/topper.liquid" status:status %}{% endif %}
|
||||||
<article class="h-entry">
|
{% for post in pagination.items %}
|
||||||
<a class="no-underline" href="{{ post.url }}">
|
{% if post.data.published %}
|
||||||
<h2 class="flex--centered">{{ post.data.title }}</h2>
|
<article class="h-entry">
|
||||||
</a>
|
<a class="no-underline" href="{{ post.url }}">
|
||||||
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
|
<h2 class="flex--centered">{{ post.data.title }}</h2>
|
||||||
<time class="dt-published" datetime="{{ post.date }}">
|
</a>
|
||||||
{{ post.date | date: "%m.%Y" }}
|
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
|
||||||
</time>
|
<time class="dt-published" datetime="{{ post.date }}">
|
||||||
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
{{ post.date | date: "%m.%Y" }}
|
||||||
{{ post.data.post_excerpt | markdown }}
|
</time>
|
||||||
</article>
|
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
|
||||||
{% endif %} {% endfor %} {% include "partials/paginator.liquid" %}
|
{{ post.data.post_excerpt | markdown }}
|
||||||
|
</article>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% include "partials/paginator.liquid" %}
|
||||||
|
|
Reference in a new issue