replaced askama with tera, reworked the whole website and added nixos module

This commit is contained in:
2026-03-26 13:24:13 +01:00
parent 0670589b5e
commit 81686d6fb8
12 changed files with 888 additions and 621 deletions

View File

@@ -1,16 +1,20 @@
<!DOCTYPE html>
<html lang="{{ lang }}">
<html>
<head>
<meta charset="utf-8"/>
<title>{% block title %}Dynamic Form{% endblock %}</title>
<title>{{ title }}</title>
<link rel="stylesheet" href="_base.css">
<style>
/*<![CDATA[*/
{%~ include "_layout.css" ~%}
/*]]>*/
{% include "_base.css" %}
</style>
</head>
<body>
{% block content %}{% endblock %}
<nav>
<a href="/">Home</a>
<a href="/showcase">Showcase</a>
</nav>
<main>
{% block content %}{% endblock %}
</main>
<footer>Quick rust website template</footer>
</body>
</html>