aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html12
-rw-r--r--templates/project.html25
2 files changed, 36 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>
diff --git a/templates/project.html b/templates/project.html
new file mode 100644
index 0000000..02dd526
--- /dev/null
+++ b/templates/project.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>{{ content "title" }} | COMPROMYSE</title>
+
+ <link href="/assets/stylesheet.css" rel="stylesheet" />
+ <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">
+ <div class="min-h-screen flex flex-col">
+
+ {{ include "navbar.html" }}
+
+ <div class="flex flex-grow flex-col prose md:prose-lg lg:prose-xl prose-pink prose-invert py-8 px-14">
+ {{ body }}
+ </div>
+
+ {{ include "footer.html" }}
+
+ </div>
+ </body>
+</html>