diff options
author | Nikolas <nikolas@boutalas.com> | 2024-10-28 12:38:54 +0200 |
---|---|---|
committer | Nikolas <nikolas@boutalas.com> | 2024-10-28 12:42:20 +0200 |
commit | f934df8bc8fd0c8d19436f1b51a61e1f3f6bd08e (patch) | |
tree | 30677619a682eb15b5d7117cd72244aefca9407a /templates/index.html | |
parent | a28cecd8e11672148809a5cf6dadc4d18f0f2324 (diff) |
index: add notes section
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/templates/index.html b/templates/index.html index 45d963e..4f63b15 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,13 +1,12 @@ {% extends "base.html" %} {% block body %} -<section> - <h1>Archive of Nikolas Boutalas</h1> - <p>Opinions are (hopefully) my own.</p> -</section> - -<section> - <h2>Links</h2> - <ul> - <li><a href="https://git.boutalas.com">Repositories</a></li> - </ul> -</section> +<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 %} |