10 lines
213 B
Markdown
10 lines
213 B
Markdown
---
|
|
title: Posts
|
|
layout: default.liquid
|
|
permalink: /posts
|
|
---
|
|
|
|
{% for post in collections.posts.pages %}
|
|
### [{{ post.published_date | date: "%Y-%m-%d" }} - {{ post.title }}](/{{ post.permalink }})
|
|
{% endfor %}
|