Add missing static routes for favicon, about and acknowledgments

This commit is contained in:
Juno Takano 2025-12-11 02:15:14 -03:00
commit 2b1683700f
5 changed files with 147 additions and 2 deletions

20
templates/about.html Normal file
View file

@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block title %}About{% endblock title %}
{%- block body %}
<h1>About</h1>
<p>en is a program to create a connected collection of texts.</p>
<p>You define your graph using a plain-text configuration file and then en reads this file and generates a webpage like the one you are seeing right now.</p>
<p>If you'd like to learn more:</p>
<ul>
<li><a href="https://en.jutty.dev">Website</a></li>
<li><a href="https://en.jutty.dev/docs">Documentation</a></li>
<li><a href="https://codeberg.org/jutty/en">Source code repository</a></li>
</ul>
{%- endblock body %}