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