-
Notifications
You must be signed in to change notification settings - Fork 0
/
_layout.haml
33 lines (27 loc) · 1.26 KB
/
_layout.haml
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
!!!
%html
%head
%meta{charset: "utf-8"}/
%title Emula
/ Sets initial viewport load and disables zooming
%meta{content: "initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui", name: "viewport"}/
/ Makes your prototype chrome-less once bookmarked to your phone's home screen
%meta{content: "yes", name: "apple-mobile-web-app-capable"}/
%meta{content: "black", name: "apple-mobile-web-app-status-bar-style"}/
%script{src: "./bower_components/jquery/dist/jquery.js"}
%script{src: "./bower_components/bootstrap/dist/js/bootstrap.js"}
%link{href: "./bower_components/bootstrap/dist/css/bootstrap.css", rel: "stylesheet"}
%script{src: './js/ie10-viewport-bug-workaround.js'}
%script{src: './js/ie-emulation-modes-warning.js'}
%script{src: 'script.js'}
%link{href:'./style.css', rel: "stylesheet"}
%link{href:'./sticky.css', rel: "stylesheet"}
/ HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries
/[if lt IE 9]
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
%body
= render 'shared/head'
.container-fluid
= yield
= render 'shared/footer'