hexaitos.com/blog.html

14 lines
263 B
HTML
Raw Normal View History

2024-09-30 14:14:56 +00:00
---
layout: default
title: "Hexaitos.com Blog"
---
<h1>Blog Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }} ({{ post.date | date_to_string }})</a>
{{ post.excerpt }}
</li>
{% endfor %}
</ul>