first commit

This commit is contained in:
Bryan Van Deusen 2025-11-10 19:03:13 -05:00
commit 3f2cec5cb9
27 changed files with 1159 additions and 0 deletions

17
_layouts/post.html Normal file
View file

@ -0,0 +1,17 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<div class="post-item">
<div class="page-meta">
{{ page.date | date_to_string }} - {{ page.author }}
{% if page.tags and page.tags.size > 0 %}
<ul class="page-tags">
{% for tag in page.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
{{ content }}
</div>