Initial Setup

Tooling:
  nix/direnv to ensure dependencies are present
  jinja-based templating to avoid duplication of common sections of pages
    (header and footer, primarily)
  auto-rebuilding server for rapid iteration
This commit is contained in:
bluepython508
2024-03-05 09:39:03 +00:00
commit d6ef3d511c
8 changed files with 104 additions and 0 deletions

10
base.html Normal file
View File

@@ -0,0 +1,10 @@
<!doctype html>
<html>
<head>
<title>{% block title %}{% endblock title %}</title>
</head>
<body>
<nav></nav>
{% block main %}{% endblock main %}
</body>
</html>