sass-site/source/blog.liquid

32 lines
766 B
Plaintext
Raw Normal View History

---
pagination:
data: collections.blog
size: 5
alias: posts
2023-03-03 16:39:31 +01:00
reverse: true
2023-03-07 18:15:27 +01:00
layout: has_no_sidebars
title: Sass Blog
---
2023-03-07 18:15:27 +01:00
Page {{ pagination.pageNumber | plus: 1 }} of {{ pagination.pages.length }}
<ul class="sl-c-list">
2023-03-03 16:39:31 +01:00
{% if pagination.href.previous %}
<li>
<a href="{{ pagination.href.previous }}">Previous</a>
</li>
{% endif %}
{%- for post in posts -%}
<li>
<h2>
<a href="{{post.url}}">{{ post.data.title }}</a>
</h2>
2023-03-08 20:03:38 +01:00
<p class="sl-c-attribution">Posted {{ post.date | formatBlogDate }} by {{ post.data.author }}</p>
{{ post.content | truncatePost }}
</li>
{%- endfor -%}
2023-03-03 16:39:31 +01:00
{% if pagination.href.next %}
<li>
<a href="{{ pagination.href.next }}">Next</a>
2023-03-03 16:39:31 +01:00
</li>
{% endif %}
</ul>