mirror of
https://github.com/rvtr/ninjacheetah.github.io.git
synced 2025-06-18 11:05:37 -04:00
18 lines
394 B
HTML
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>
|