2022-08-31 23:20:59 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block main %}
|
2023-03-26 13:44:26 +02:00
|
|
|
<h1>tollyx.net</h1>
|
2022-08-31 23:20:59 +02:00
|
|
|
<p>hi hello welcome to my website it's pretty wip right now yeah ok bye</p>
|
|
|
|
<h2>todo</h2>
|
|
|
|
<ul>
|
2023-03-26 13:44:26 +02:00
|
|
|
<li>✅ static content</li>
|
|
|
|
<li>✅ template rendering (tera)</li>
|
|
|
|
<li>✅ markdown rendering (pulldown_cmark)</li>
|
|
|
|
<li>✅ post metadata (frontmatter, toml)</li>
|
2023-03-29 18:03:54 +02:00
|
|
|
<li>✅ app metrics (page hits, etc)</li>
|
2023-03-26 13:44:26 +02:00
|
|
|
<li>✅ tests</li>
|
2023-03-29 18:19:39 +02:00
|
|
|
<li>✅ page aliases (redirects, for back-compat with old routes)</li>
|
2023-03-29 18:03:54 +02:00
|
|
|
<li>⬜ sass compilation (using rsass? grass?)</li>
|
2023-04-03 23:33:25 +02:00
|
|
|
<li>✅ rss/atom/jsonfeed (atom is good enough for now)</li>
|
2023-03-26 13:44:26 +02:00
|
|
|
<li>✅ proper error handling (i guess??)</li>
|
2023-03-29 18:03:54 +02:00
|
|
|
<li>⬜ fancy styling</li>
|
2023-03-26 13:44:26 +02:00
|
|
|
<li>⬜ other pages???</li>
|
2023-03-29 18:03:54 +02:00
|
|
|
<li>⬜ graphviz to svg rendering??</li>
|
|
|
|
<li>⬜ image processing?? (resizing, conversion)</li>
|
2023-03-26 13:44:26 +02:00
|
|
|
<li>⬜ opentelemetry?</li>
|
2022-08-31 23:20:59 +02:00
|
|
|
</ul>
|
2023-03-29 21:48:27 +02:00
|
|
|
{% endblock main %}
|