summaryrefslogtreecommitdiff
path: root/desk/web/index.hoon
diff options
context:
space:
mode:
Diffstat (limited to 'desk/web/index.hoon')
-rw-r--r--desk/web/index.hoon31
1 files changed, 31 insertions, 0 deletions
diff --git a/desk/web/index.hoon b/desk/web/index.hoon
new file mode 100644
index 0000000..7684289
--- /dev/null
+++ b/desk/web/index.hoon
@@ -0,0 +1,31 @@
+/- tp=trill-post
+/+ *sortug
+/= nav /web/layout/nav
+/= footer /web/layout/footer
+/= sidebar /web/components/sidebar
+/* css %css /web/index/css
+|_ [children=marl =bowl:gall]
+++ $
+ :: ;link(rel "icon", type "image/svg+xml", href (weld "data:image/svg+xml;utf8," favicon));
+^- manx
+ ;html
+ =data-theme "light"
+ ;head
+ ;meta(charset "utf-8");
+ ;meta(name "viewport", content "width=device-width, initial-scale=1, shrink-to-fit=no");
+ ;title:"Bloody Shovel 4"
+ ;style:"{(trip css)}"
+ ;script@"https://platform.twitter.com/widgets.js"(async "", charset "utf-8");
+ ;link/"https://fonts.googleapis.com"(rel "preconnect");
+ ;link/"https://fonts.gstatic.com"(rel "preconnect");
+ ;link/"https://fonts.googleapis.com/css2?family=Arvo&family=Crimson+Text&family=Inter&display=swap"(rel "stylesheet");
+ ==
+ ;body
+ ;+ (nav bowl)
+ ;main
+ ;* children
+ ==
+ :: ;+ footer
+ ==
+ ==
+--