summaryrefslogtreecommitdiff
path: root/src/_includes/page.vto
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-12 07:51:32 -0500
committerseth <[email protected]>2024-02-12 08:51:36 -0500
commit19b01bff4c251722d4739f6dca208497877f7cbb (patch)
tree31918495004c9386760afbac6853c9e7668093c1 /src/_includes/page.vto
parentec2b378c8d7885290db2d526364eb59512e60d0e (diff)
actually kinda try this time
Diffstat (limited to 'src/_includes/page.vto')
-rw-r--r--src/_includes/page.vto26
1 files changed, 20 insertions, 6 deletions
diff --git a/src/_includes/page.vto b/src/_includes/page.vto
index a3493ea..616ae4c 100644
--- a/src/_includes/page.vto
+++ b/src/_includes/page.vto
@@ -1,9 +1,23 @@
---
-layout: base.vto
+links:
+ - name: home
+ url: "/"
+ - name: miniflux
+ url: "https://miniflux.mydadleft.me"
+ - name: github
+ url: "https://github.com/getchoo"
---
-<div class="container">
- <div class="content" id="blogpost">
- {{ content }}
- </div>
-</div>
+
+<!DOCTYPE HTML>
+<html lang="en">
+{{ comp.head({ title, description }) }}
+<body class="bg-base text-text p-5 lg:p-0 text-md md:text-lg antialiased max-w-screen-md mx-auto my-10">
+ <h1>
+ <b>getchoo's website 🦕</b>
+ </h1>
+ {{ comp.nav({ links }) }}
+ {{ content }}
+ {{ comp.footer() }}
+</body>
+</html>