aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/index.html
diff options
context:
space:
mode:
authorJackJ30 <jackqjamison@gmail.com>2025-05-12 20:16:25 -0400
committerJackJ30 <jackqjamison@gmail.com>2025-05-12 20:16:25 -0400
commit8b5d0b19659b35b7d2433a25a22d188ecbeecddd (patch)
treea44babb5d3f33aeb5e7f23b9456bf68630c3f2e0 /zola-static/templates/index.html
parent417cbec1bd52c239f28c19b7affcdec693e803fd (diff)
styling done
Diffstat (limited to 'zola-static/templates/index.html')
-rw-r--r--zola-static/templates/index.html20
1 files changed, 16 insertions, 4 deletions
diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html
index 297850d..f674f13 100644
--- a/zola-static/templates/index.html
+++ b/zola-static/templates/index.html
@@ -1,8 +1,20 @@
{% extends "base.html" %}
{% block content %}
-<h1 class="title">
- Jack Jamison's Homepage
-</h1>
-<p><a href ="{{ get_url(path='@/blog/_index.md') }}">My blog</a></p>
+<h2>All about</h2>
+<ul>
+ <li><p><a href="{{ get_url(path='@/about-me.md') }}">About me</a></p></li>
+ <li><p><a href="{{ get_url(path='@/about-this-site.md') }}">About this site</a></p></li>
+</ul>
+<h2>Articles</h2>
+<ul>
+ <li><p><a href="{{ get_url(path='@/blog/_index.md') }}"></a></p></li>
+</ul>
+<h2>Links</h2>
+<ul>
+ <li><p><a href="https://github.com/JackJ30">GitHub</a></p></li>
+ <li><p><a href="https://jackj30.github.io">Old portfolio</a></p></li>
+</ul>
+<hr>
+<p class="footer-text"><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a></p>
{% endblock content %}