blob: a740ef7f682e7c10a384990da1b947f3c082b505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends "base.html" %} {% block body %}
<h1>Archive</h1>
{% set notes_section = get_section(path="notes/_index.md") %}
<h2>{{notes_section.title}}</h2>
{{ notes_section.content | safe}}
<ul>
{% for page in notes_section.pages %}
<li><a href="{{ page.permalink | safe }}">... {{ page.title }}</a> ({{ page.date}})</li>
{% endfor %}
</ul>
{% set photos_section = get_section(path="photos/_index.md") %}
<h2>{{photos_section.title}}</h2>
{{ photos_section.content | safe}}
<a href="{{ photos_section.permalink | safe }}">Check it out</a>
<h2>Links</h2>
<ul>
<li><a href="https://git.boutalas.com">Repositories</a></li>
<li><a href="https://dump.boutalas.com">File dump</a></li>
</ul>
<footer>
<hr />
<p class="center"><small>Feedback or patch? <a href="mailto:nikolas@boutalas.com">Don't send me an email</a></small></p>
</footer>
{% endblock body %}
|