-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path_layout.jade
30 lines (30 loc) · 1.28 KB
/
_layout.jade
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
doctype
html()
head
meta(charset='utf-8')
title Ceres Geo App
//
Sets initial viewport load and disables zooming
meta(name='viewport', content='initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui')
//
Makes your prototype chrome-less once bookmarked to your phone's home screen
meta(name='apple-mobile-web-app-capable', content='yes')
meta(name='apple-mobile-web-app-status-bar-style', content='black')
//
Include the compiled Ratchet CSS
link(href='styles/ratchet.min.css', rel='stylesheet')
link(href='styles/ratchet-theme-ios.min.css', rel='stylesheet')
link(rel="stylesheet" href="styles/main.css")
//
Include the compiled Ratchet JS
script(src='scripts/ratchet.min.js')
script(src='http://code.jquery.com/jquery-1.11.0.min.js')
script(src='scripts/jquery.mobile-events.min.js')
script(src='https://maps.googleapis.com/maps/api/js?key=AIzaSyBvPMI2MVpyRUkqC7F77LK16XN-SJpw610&sensor=TRUE')
script(src='scripts/gmaps.js')
script(src='scripts/compass.js')
script(src='scripts/tabletop.js')
script(src='scripts/sheetsee.js')
body
!= yield
script(src='scripts/app.js')