achubb_website/templates/blogroll.html

25 lines
678 B
HTML

<!-- prettier-ignore -->
{% extends "base.html" %}
{% block content %}
<h2>Blogroll</h2>
<p>
I follow quite a few blogs.
I love good writing and personal websites.
Places away from the noise of the modern web, without advertisement or trackers.
Following links through these is how I spend most of my time online these days.
</p>
<ul class="no-bul">
{% for blog in blogs %}
<li><a href={{blog.url}}>{{blog.title}}</a>
{% match blog.description %}
{% when Some with (description) %}
:<br>{{description}}
{% when None %}
{% endmatch %}
</li>
<br>
{% endfor %}
</ul>
{% endblock %}