add index
This commit is contained in:
parent
057b5630ae
commit
2533382212
1 changed files with 13 additions and 0 deletions
13
index.html
Normal file
13
index.html
Normal 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>
|
Loading…
Reference in a new issue