24 lines
959 B
HTML
24 lines
959 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<h1>tollyx.net</h1>
|
|
<p>hi hello welcome to my website it's pretty wip right now yeah ok bye</p>
|
|
<h2>todo</h2>
|
|
<ul>
|
|
<li>✅ static content</li>
|
|
<li>✅ template rendering (tera)</li>
|
|
<li>✅ markdown rendering (pulldown_cmark)</li>
|
|
<li>✅ post metadata (frontmatter, toml)</li>
|
|
<li>✅ app metrics (page hits, etc)</li>
|
|
<li>✅ tests</li>
|
|
<li>✅ page aliases (redirects, for back-compat with old routes)</li>
|
|
<li>⬜ sass compilation (using rsass? grass?)</li>
|
|
<li>✅ rss/atom/jsonfeed (atom is good enough for now)</li>
|
|
<li>✅ proper error handling (i guess??)</li>
|
|
<li>⬜ fancy styling</li>
|
|
<li>⬜ other pages???</li>
|
|
<li>⬜ graphviz to svg rendering??</li>
|
|
<li>⬜ image processing?? (resizing, conversion)</li>
|
|
<li>⬜ opentelemetry?</li>
|
|
</ul>
|
|
{% endblock main %}
|