aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/layout.pug
blob: 8c1e99205e4dd0ecf5fbfd17d785a8ef674a17fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//-
 layout.pug
 Copyright (c) 2019, Texx
 License: MIT
     See https://github.com/texxme/Texx/blob/master/LICENSE

doctype html
html
    head
        title Texx
        meta(charset='UTF-8')
        meta(name='viewport',
        content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0')
        meta(http-equiv='X-UA-Compatible' content='ie=edge')
        script(src='app.js')
        link(rel='stylesheet', href='app.css')
    body
        block content