gri3-wm/blog/index.html

13 lines
265 B
HTML
Raw Normal View History

---
layout: default
---
<h1>blog: Whats new?</h1>
{% for post in site.posts %}
<div class="post">
<h2><span class="date">{{ post.date | date:"%Y-%m-%d" }}</span> <a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content }}
</div>
{% endfor %}