13 lines
194 B
Markdown
13 lines
194 B
Markdown
---
|
|
# the default layout is 'page'
|
|
icon: fas fa-blog
|
|
order: 4
|
|
---
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|