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