13 lines
265 B
HTML
13 lines
265 B
HTML
---
|
||
layout: default
|
||
---
|
||
|
||
<h1>blog: What’s 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 %}
|