comicsite/blog.html
etherware-novice 285b1f419c
more tooling
2024-07-24 16:09:26 -05:00

15 lines
209 B
HTML

---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>