aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/layout.jade
blob: 6195ab341c213f367b3b87a9ec5bd396392ab5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
doctype html
html
  head
    link(rel='icon' type='image/png' href='/images/favicon.png')
    
    title= title
    
    // build:css /stylesheets/global.min.css 
    each file in [ 'index' ]
      link(rel='stylesheet', href='/stylesheets/' + file + '.css')
    // endbuild
    
    // build:css /stylesheets/vendor/global.min.css 
    each file in [ 'bootstrap.min' ]
      link(rel='stylesheet', href='/stylesheets/vendor/css/' + file + '.css')
    // endbuild
    
  body
    block content