-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdefault.jade
More file actions
43 lines (32 loc) · 1.12 KB
/
default.jade
File metadata and controls
43 lines (32 loc) · 1.12 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
doctype html
block vars
- manifest = manifest || {}
- var title = manifest.name
- var description = ''
html(lang=manifest.lang)
head
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible', content='IE=edge,chrome=1')
meta(name='viewport', content='width=device-width,initial-scale=1')
title=title
link(rel='manifest', href='data/manifest.json')
meta(name='theme-color', content=manifest.theme_color)
meta(name='description', content=description)
link(rel='icon', type='image/png', href='./images/icons/36x36.png', sizes='36x36')
link(rel='stylesheet', href='styles/#{buildstamp}index.css')
<!--[if lt IE 9]>
link(rel='stylesheet', href='styles/#{buildstamp}oldie.css', media='screen')
script(src='node_modules/lt-ie-9/lt-ie-9.min.js')
<![endif]-->
// Queue of JS components to initialize
script.
initComponents = [
{ name: 'shapes', data: { url: './sprites/shapes.svg' } }
]
//- Application init
script(src='https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js', defer)
script(src='scripts/#{buildstamp}index.js', defer)
body
block header
block content
block footer