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