website/index.html

16 lines
295 B
HTML

---
layout: default
---
<div class="blog">
<h1>Blog</h1>
<ul>
{% for post in site.posts %}
<li>
<span class="date">{{ post.date | date: '%b %d %Y' }}</span> | <a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>