summaryrefslogtreecommitdiff
path: root/desk/web/index.hoon
blob: 768428946002e710b5239da224bf874b926997f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
    ==
  ==
--