ninjacheetah.github.io/blog.html
2022-05-13 23:30:45 -04:00

18 lines
389 B
HTML

---
title: Blog
layout: default
---
<div class="text-center">
<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>