blob: 4f63b15a5a2a050da58020957364400c93272a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html" %} {% block body %}
<h1>Archive</h1>
<p>Opinions are (hopefully) my own.</p>
{% set notes_section = get_section(path="notes/_index.md") %}
<h2>{{notes_section.title}}</h2>
{{ notes_section.content | safe}}
<a href="{{ notes_section.permalink | safe }}">Read More</a>
<h2>Links</h2>
<ul>
<li><a href="https://git.boutalas.com">Repositories</a></li>
</ul>
{% endblock body %}
|