summaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-08 11:49:47 -0400
committerGitHub <[email protected]>2024-10-08 11:49:47 -0400
commit20d62336a446bea6c5846805e8325b67cd59fe54 (patch)
tree46a92b1de1021eb0631b54f664ba0c2ddf6752c6 /templates/base.html
parent07cb04200916169671b9c426fbfe9a24bb0fa79e (diff)
nice redesign (#145)
* nix: drop treefmt * nix: remove .envrc * nix: move `serve` to apps output * nice redesign * use local stylesheet * nix: fix build
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/templates/base.html b/templates/base.html
index b15d5eb..a78d8b9 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -2,9 +2,12 @@
<html lang="en">
{% include "partials/head.html" %}
<body>
- <h1><b>getchoo's website 🦀</b></h1>
- {% include "partials/nav.html" %}
- {% block content %}{% endblock content %}
+ <header>
+ {% include "partials/nav.html" %}
+ </header>
+ <div class="main-content">
+ {% block content %}{% endblock content %}
+ </div>
{% include "partials/footer.html" %}
</body>
</html>