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