summaryrefslogtreecommitdiffhomepage
path: root/views/layout.dt
blob: 6b213a69e20db93ff5aca056186ad90d7c9679d6 (plain) (blame)
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
doctype html
html(lang='en')
    head
        meta(charset='utf-8')
        meta(name='viewport', content='width=device-width, initial-scale=1')
        block css
            :css
                body {
                  margin: 40px auto;
                  max-width: 650px;
                  line-height: 1.6;
                  font-size: 18px;
                  color: #444;
                  padding: 0 10px
                }
                h1,h2,h3 { line-height:1.2; }
                td { text-align: left; }
        block scripts
        block title
            title Burning Rubber Paste
    body
        #main
            block content
                p I'm not sure how you got here, but you shouldn't be here.
        block bodyscripts

//- vim: ft=pug