quick rust website

This commit is contained in:
2025-12-08 20:54:02 +01:00
commit b0a5e51607
12 changed files with 2083 additions and 0 deletions

16
templates/_layout.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="{{ lang }}">
<head>
<meta charset="utf-8"/>
<title>{% block title %}Dynamic Form{% endblock %}</title>
<style>
/*<![CDATA[*/
{%~ include "_layout.css" ~%}
/*]]>*/
</style>
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>