sutty-base-jekyll-theme/_layouts/home.html

14 lines
172 B
HTML
Raw Normal View History

2020-03-21 16:18:57 +00:00
---
layout: default
---
<ul>
{%- for post in site.posts -%}
<li>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</li>
{%- endfor %}
</ul>