diff options
author | Nikolas <nikolas@boutalas.com> | 2024-10-27 19:27:53 +0200 |
---|---|---|
committer | Nikolas <nikolas@boutalas.com> | 2024-10-27 19:27:53 +0200 |
commit | a28cecd8e11672148809a5cf6dadc4d18f0f2324 (patch) | |
tree | 1a316295a28d42144c7667efb000c2ec5a919875 /templates/index.html | |
parent | 927a7f2067bbaaa90301c71b0c6f262983b335c5 (diff) |
index: add links list
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..45d963e --- /dev/null +++ b/templates/index.html @@ -0,0 +1,13 @@ +{% 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> +{% endblock body %} |