summaryrefslogtreecommitdiff
path: root/desk/web/layout.hoon
blob: 213046df99e27c337d37369798dc8321838a9754 (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
|_  children=marl
++  $
  ;html
    ;head
      ;meta(charset "utf-8");
      ;meta(name "viewport", content "width=device-width, initial-scale=1, shrink-to-fit=no");
      ;title:"Nostril"
      ;link/"/forum/imgs/favicon.ico"(rel "icon", type "image/png");
      ;link/"/forum/imgs/favicon-32x32.png"(rel "icon", type "image/png", sizes "32x32");
      ;link/"/forum/imgs/favicon-16x16.png"(rel "icon", type "image/png", sizes "16x16");
      ;link/"/forum/imgs/apple-touch-icon.png"(rel "apple-touch-icon", type "image/png", sizes "180x180");
      ;link/"/forum/site.webmanifest"(rel "manifest");
      ;link/"/forum/style.css"(rel "stylesheet");
    ==
    ;body
      ;*  children
      ;div.footer
        ; Hosted on 
        ;a/"https://urbit.org/get-started": ~Urbit
        ; .
      ==
    ==
  ==
--