diff options
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 %} |
