feat: reorg pages

This commit is contained in:
Devin Haska 2024-03-22 16:40:28 -07:00
parent 0e3ef370c7
commit 593f20560d
16 changed files with 8 additions and 24 deletions

22
src/pages/blogroll.html Normal file
View file

@ -0,0 +1,22 @@
---
title: Blogroll
---
<section class="[ flow ]">
<h1>Blogroll</h1>
<p>A collection of my favourite sites, in no particular order.</p>
<p>
If you're looking for more cool sites, visit <a href="https://blogroll.org"
target="_blank"
rel="external noreferrer noopener">blogroll.org</a>!
</p>
<ul>
{% for item in blogroll %}
<li>
<a href="{{ item.url }}"
target="_blank"
rel="external noreferrer noopener">{{ item.title }}</a>
</li>
{% endfor %}
</ul>
</section>