11 lines
154 B
Markdown
11 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>
|