Files
Pupil/index.html
2019-06-12 21:44:07 +09:00

28 lines
484 B
HTML

---
layout: default
lang: ko
description: 히토미 뷰어 Pupil
---
<div id="home">
<h1>글 목록</h1>
{% assign posts=site.posts | where:"lang", page.lang %}
<ul class="posts">
{% for post in posts %}
<li>
<span>
{{ post.date | date_to_string }}
</span>
&raquo;
<a href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }}
</a>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>
</div>