Here goes something

This commit is contained in:
Juno Takano 2025-12-09 18:28:39 -03:00
commit a7d944bbd4
16 changed files with 2700 additions and 0 deletions

14
templates/error.html Normal file
View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{%- block body %}
<h1>
{{ title | default(value="Unknown error") }}
</h1>
{{ message | default(value="This error has not been described in detail.") }}
<hr>
<div align=right style="margin-top: 4em; margin-right: 2em">
<p><em>It seems you have fallen out of the circle.</em></p>
<p>Maybe you'd like to climb back on the <a href="/tree">tree</a>?
</div>
</p>
{%- endblock body %}