aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-08-02 08:39:40 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-08-02 08:39:40 +0530
commitfcc121911fd06030320b8401bfae58f181490b55 (patch)
tree47c14718678d0c4b9d0958f40263eb8112dceb0d /templates/base.html
parentd3ce4232e9b4597dadfd9fa3c5dbfa59fbd407fd (diff)
tailwind: prose
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html12
1 files changed, 11 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index 0451020..2586041 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -10,6 +10,16 @@
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">
</head>
<body class="bg-zinc-900 text-pink-300 font-[Pixelify_Sans] selection:text-pink-900 selection:bg-pink-100 lg:text-xl">
- {{ body }}
+ <div class="min-h-screen flex flex-col">
+
+ {{ include "navbar.html" }}
+
+ <div class="flex flex-grow flex-col">
+ {{ body }}
+ </div>
+
+ {{ include "footer.html" }}
+
+ </div>
</body>
</html>