Add initial setup and admin page
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 23s
Cargo Build & Test / Rust project - latest (beta) (push) Failing after 35s
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 33s

This commit is contained in:
2025-10-04 16:04:19 -05:00
parent bf5d3dc222
commit f859f8f34b
15 changed files with 926 additions and 44 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<meta charset="utf-8">
<title>{% block title %}{% endblock title %}</title>
<link href="style.css" rel="stylesheet" />
{% endblock head %}
</head>
<body>
{% block body %}
<div id="header">{% block header %}{% endblock header %}</div>
<div id="content">{% block content %}{% endblock content %}</div>
<div id="footer">{% block footer %}{% endblock footer %}</div>
{% endblock body %}
</body>
</html>