summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index 8540d29..b6d794c 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,10 +1,17 @@
{% 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>
+<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>