14 lines
258 B
HTML
14 lines
258 B
HTML
|
---
|
||
|
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>
|