{% extends "base.html" %}
{% block head_title %}
{{ SITENAME }} :: All Posts
{% endblock head_title %}
{% block title %}
All Posts
{% endblock title %}
{% block author %}
Error <br />
April 2022
{% endblock author %}
{% block abstract %}
{{ ABSTRACT }}
{% endblock abstract %}
{% block content %}
<nav class="toc">
<h2 id="contents">
Contents
</h2>
<ol>
{% for article in articles %}
{% if loop.first %}
<li>
<a href="{{ SITEURL }}/">
</a>
</li>
{% endif %}
<a href="{{ SITEURL }}/{{ article.url }}">
{{ article.title }}
{% if loop.last %}
</ol>
{% endfor %}
{% for page in pages %}
<a href="{{ SITEURL }}/{{ page.url }}">
{{ page.title }}
{% for name, link in LINKS %}
Appendix
<a href="{{ link }}">
{{ name | title }}
</nav>
{% endblock content %}