diff options
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..d6c2755 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} + +{% block title %}lemon's site{% endblock title %} +{% block content %} + +<h1 class="title">lemon's site</h1> +Hi, I'm lemon (she/her). I like compilers, tool-assisted speedruns and low level +programming among other things. I do stuff sometimes. Occasionally I might +share some of that stuff here. + +<h3>links</h3> + +<ul> +<li><a href="/mips.html">web MIPS assembler/disassembler (incomplete)</a> +<li><a href="/b">blog</a> (last updated on {{ get_section(path="b/_index.md") | get(key="pages") | map(attribute="date") | first }}) +<li><a href="https://git.sr.ht/~lsof/">git</a> +<li><a href="https://www.youtube.com/channel/UCoZ8JbiXlq_Zh0DGvaGRTDQ">youtube</a> +<li><img src="/asset/link.png" width="18" height="23"> +</ul> + +<h3>contact</h3> + +<ul> +<!--li><strong>lemon#8558</strong> on discord </li--!> +<li><img src="/asset/mailto.png" width="128" height="21"> +</ul> + +<hr> + +<img src="/asset/nvim.png"> +<img src="/asset/lynx.png"> +<img src="/asset/linux.png"> + +{% endblock content %} |