diff options
Diffstat (limited to 'views/layout.jade')
-rw-r--r-- | views/layout.jade | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/views/layout.jade b/views/layout.jade new file mode 100644 index 000000000..6195ab341 --- /dev/null +++ b/views/layout.jade | |||
@@ -0,0 +1,19 @@ | |||
1 | doctype html | ||
2 | html | ||
3 | head | ||
4 | link(rel='icon' type='image/png' href='/images/favicon.png') | ||
5 | |||
6 | title= title | ||
7 | |||
8 | // build:css /stylesheets/global.min.css | ||
9 | each file in [ 'index' ] | ||
10 | link(rel='stylesheet', href='/stylesheets/' + file + '.css') | ||
11 | // endbuild | ||
12 | |||
13 | // build:css /stylesheets/vendor/global.min.css | ||
14 | each file in [ 'bootstrap.min' ] | ||
15 | link(rel='stylesheet', href='/stylesheets/vendor/css/' + file + '.css') | ||
16 | // endbuild | ||
17 | |||
18 | body | ||
19 | block content \ No newline at end of file | ||