diff options
| author | JackJ30 <jackqjamison@gmail.com> | 2025-05-13 16:19:13 -0400 |
|---|---|---|
| committer | JackJ30 <jackqjamison@gmail.com> | 2025-05-13 16:19:13 -0400 |
| commit | 59a6651a98760642866fa8499310a33625947870 (patch) | |
| tree | 3d24e36d5d0e50b506ba146725632c0105d5a5cc /zola-static/templates | |
| parent | b7a8048804b71dbabc4410841e6967d070bf4a7c (diff) | |
restyling
Diffstat (limited to 'zola-static/templates')
| -rw-r--r-- | zola-static/templates/base.html | 1 | ||||
| -rw-r--r-- | zola-static/templates/index.html | 10 |
2 files changed, 5 insertions, 6 deletions
diff --git a/zola-static/templates/base.html b/zola-static/templates/base.html index 7eb1914..fa8d2ad 100644 --- a/zola-static/templates/base.html +++ b/zola-static/templates/base.html @@ -14,7 +14,6 @@ <h1 class="header-title"><a href="{{ config.base_url }}">Jack Jamison</a></h1> {% endblock header %} <hr> - <br> {% block content %} {% endblock content %} </div> </section> diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html index 4ef333d..ec87a44 100644 --- a/zola-static/templates/index.html +++ b/zola-static/templates/index.html @@ -3,17 +3,17 @@ {% block content %} <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> + <li><a href="{{ get_url(path='@/about-me.md') }}">About me</a></li> + <li><a href="{{ get_url(path='@/about-this-site.md') }}">About this site</a></li> </ul> <h2>Articles</h2> <ul> - <li><p><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></p></li> + <li><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></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">(Archive) old portfolio</a></p></li> + <li><a href="https://github.com/JackJ30">GitHub</a></li> + <li><a href="https://jackj30.github.io">(Archive) old portfolio</a></li> </ul> <hr> <p class="footer-text"><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a></p> |
