summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: ea3c2e26fba6ffff4e4e8c2992cd7b3c9f07a9df (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
{% 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>

{% 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 them 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, thoughts or patches? <a href="mailto:nikolas@boutalas.com">Send me an email</a></small></p>
</footer>
{% endblock body %}