15 lines
187 B
Markdown
15 lines
187 B
Markdown
|
---
|
||
|
title: News
|
||
|
layout: single
|
||
|
author_profile: false
|
||
|
---
|
||
|
|
||
|
<ul>
|
||
|
{% for post in site.posts %}
|
||
|
<li>
|
||
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
|