First commit.

This commit is contained in:
Bun 2025-06-30 19:43:00 -04:00
commit 2ec0acf870
13 changed files with 186 additions and 0 deletions

17
templates/base.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NixFox</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>