9 lines
140 B
Markdown
9 lines
140 B
Markdown
|
---
|
||
|
title: "Posts"
|
||
|
---
|
||
|
{% for post in site.posts %}
|
||
|
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
||
|
{{ post.excerpt }}
|
||
|
|
||
|
{% endfor %}
|