blog/index.html

14 lines
258 B
HTML
Raw Normal View History

2021-02-11 15:54:56 +01:00
---
layout: default
---
<ul id="feed">
{% for post in site.posts %}
<li>
<small class="date">{{ post.date | date: "%Y年%m月%d日" }}</small>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>