add index

This commit is contained in:
anna 2021-02-11 15:54:56 +01:00
parent 057b5630ae
commit 2533382212
Signed by: fef
GPG key ID: EC22E476DC2D3D84

13
index.html Normal file
View file

@ -0,0 +1,13 @@
---
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>