All checks were successful
Build and Deploy / build_and_deploy (push) Successful in 1m33s
22 lines
617 B
HTML
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>
|