1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-07-31 13:07:46 +00:00

Fix brain rot

This commit is contained in:
RGBCube 2024-02-16 12:47:32 +03:00
parent 3bafcf1765
commit dbe56ccbb1
No known key found for this signature in database
12 changed files with 52 additions and 59 deletions

21
site/blog.vto Normal file
View file

@ -0,0 +1,21 @@
---
layout: text.vto
title: Blog
---
<h1>Blog Articles</h1>
Are you old? Then you might want to check out my super cool
<a href="/feed">RSS Feed</a> too!
<ul>
{{ for article of search.pages("type=article", "date")}}
<li>
<p>
<a href="{{ article.url }}">{{ article.date.toISOString().slice(0, 10) }}</a>:
{{ article.title }}
</p>
</li>
{{ /for }}
</ul>