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