Moving to jekyll

This commit is contained in:
2025-04-06 22:00:08 -04:00
parent dfe7fee97c
commit befdfa3206
20 changed files with 290 additions and 42 deletions
+14
View File
@@ -0,0 +1,14 @@
---
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>