aboutsummaryrefslogtreecommitdiff
path: root/zola-static/templates/index.html
blob: 2dbb8940268a9e77e920caff5ee3d4eb6a5b1fca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "base.html" %}

{% block content %}
<h2>All about</h2>
<ul>
  <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><a href="{{ get_url(path='@/blog/emacs-garbage-collection.md') }}">Solving Emacs Garbage Collection Stutters</a></li>
</ul>
<h2>Projects</h2>
<ul>
  <li><a href="https://github.com/Martian-Technologies/Logic-Graph-Creator">Gatality Logic Simulator</a></li>
  <li><a href="{{ get_url(path='@/projects/_index.md') }}">View More</a></li>
</ul>
<h2>Links</h2>
<ul>
  <li><a href="https://github.com/JackJ30">GitHub</a></li>
  <li><a href="https://jackj30.github.io">Old portfolio (haven't migrated here yet)</a></li>
</ul>
<hr>
<p class="footer-text"><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a> &#8226 <a href="{{ get_url(path='@/the-archive.md') }}">Archive</a></p>
{% endblock content %}