23 lines
568 B
HTML
23 lines
568 B
HTML
<!-- prettier-ignore -->
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Links</h2>
|
|
<p>
|
|
A collection of links to interesting posts that I have found.
|
|
In a random order to shuffle what links are at the top.
|
|
</p>
|
|
<ul class="no-bul">
|
|
{% for article in articles %}
|
|
<li><a href={{article.url}}>{{article.title}}</a>
|
|
{% match article.description %}
|
|
{% when Some with (description) %}
|
|
:<br>{{description}}
|
|
{% when None %}
|
|
{% endmatch %}
|
|
</li>
|
|
<br>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|