ninjacheetah.github.io/blog.html
2022-06-06 21:51:48 -04:00

18 lines
394 B
HTML

---
title: Blog
layout: default
---
<div class="text-center pt-3">
<h1>NinjaCheetah's Blog</h1>
<p>Where I write things and you read them I guess. Newest on top.</p>
</div>
<div class="container">
<hr>
{% for post in site.posts %}
<p><a href="{{ post.url }}">{{ post.title }}</a></p>
<p>{{ post.date | date: "%Y-%m-%d" }} ({{ post.author }})</p>
<hr>
{% endfor %}
</div>