rachel.cafe/blog.html

15 lines
294 B
HTML
Raw Normal View History

---
layout: centered
title: "blog"
---
<ul>
{% for post in site.posts %}
2022-01-27 20:36:06 +01:00
<li class="post_listing">
<a class="bit_bigger" href="{{ post.url }}">{{ post.title }}</a>
<span class=right>{{ post.date | date_to_long_string }}</span>
<hr>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>