wonderfulfrog.com/src/pages/blogroll.html
Devin Haska 1772179b5d
All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 1m33s
feat: Refactor all page layouts
2025-05-31 21:46:33 -07:00

22 lines
617 B
HTML

---
title: Blogroll
subtitle: A collection of my favourite sites, in no particular order.
description: A collection of my favourite sites.
---
<section class="flow">
<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>