feat: update blogroll to use global data

This commit is contained in:
Devin Haska 2024-02-21 09:45:40 -08:00
parent e36e847e89
commit d83bc3d135
3 changed files with 104 additions and 71 deletions

View file

@ -0,0 +1,24 @@
---
layout: base
permalink: /blogroll/index.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>