aboutsummaryrefslogtreecommitdiff
path: root/src/templates/base.html
diff options
context:
space:
mode:
authorVikas Kushwaha <dev@vikas.rocks>2024-11-21 13:54:38 +0530
committerVikas Kushwaha <dev@vikas.rocks>2024-11-21 13:54:38 +0530
commit6a16bbdcdb40406592e47ee8d489f857837e5c96 (patch)
tree8d1a9f72115a106657e059f56e5b47df1a92f483 /src/templates/base.html
Initial commit
Diffstat (limited to 'src/templates/base.html')
-rw-r--r--src/templates/base.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
new file mode 100644
index 0000000..98e5787
--- /dev/null
+++ b/src/templates/base.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>Cloud Maker</title>
+ <link rel="stylesheet" href="/static/style.css">
+ <script src="/static/script.js"></script>
+</head>
+
+<body>
+ <main>
+ {{ template "main" . }}
+ </main>
+</body>
+
+</html>
+