wonderfulfrog.com/src/pages/blogroll.html
2024-03-22 16:40:28 -07:00

22 lines
595 B
HTML

---
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>