mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 14:27:49 +00:00
10 lines
209 B
HTML
10 lines
209 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
<ul class="posts">
|
|
{% for post in site.posts %}
|
|
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|