diff options
| author | JackJ30 <jackqjamison@gmail.com> | 2025-05-12 20:16:25 -0400 |
|---|---|---|
| committer | JackJ30 <jackqjamison@gmail.com> | 2025-05-12 20:16:25 -0400 |
| commit | 8b5d0b19659b35b7d2433a25a22d188ecbeecddd (patch) | |
| tree | a44babb5d3f33aeb5e7f23b9456bf68630c3f2e0 /zola-static/templates/index.html | |
| parent | 417cbec1bd52c239f28c19b7affcdec693e803fd (diff) | |
styling done
Diffstat (limited to 'zola-static/templates/index.html')
| -rw-r--r-- | zola-static/templates/index.html | 20 |
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 %} |
