11 lines
158 B
Markdown
11 lines
158 B
Markdown
|
---
|
||
|
layout: default.liquid
|
||
|
---
|
||
|
## Blog!
|
||
|
|
||
|
{% for post in collections.posts.pages %}
|
||
|
#### {{post.title}}
|
||
|
|
||
|
[{{ post.title }}]({{ post.permalink }})
|
||
|
{% endfor %}
|