blob: 4ef333db1c3b28159a6d9701c7bb7ac15d274e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "base.html" %}
{% 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>
</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>
</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>
</ul>
<hr>
<p class="footer-text"><a href="{{ get_url(path='@/blog/_index.md') }}">All articles sorted by date</a></p>
{% endblock content %}
|