forked from cferdinandi/kraken
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
81 lines (58 loc) · 2.55 KB
/
template.html
File metadata and controls
81 lines (58 loc) · 2.55 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Force latest available IE rendering engine and Chrome Frame (if installed) -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!-- Document Title & Description -->
<title></title>
<meta name="description" content="">
<!-- Mobile Screen Resizing -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="shortcut icon" type="image/ico" href="">
<!-- Apple Touch Icons -->
<!-- https://github.com/audreyr/favicon-cheat-sheet -->
<link rel="apple-touch-icon" sizes="152x152" href="img/apple-touch-icon-152.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/apple-touch-icon-144.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/apple-touch-icon-120.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72.png">
<link rel="apple-touch-icon" href="img/apple-touch-icon-57.png">
<!-- MS Homescreen Icons -->
<meta name="msapplication-TileColor" content="#0088cc">
<meta name="msapplication-TileImage" content="img/ms-touch-icon.png">
<!-- Feature Test -->
<script src="js/feature-test.js"></script>
<!-- HTML5 Shim for IE 6-8 -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- stylesheet -->
<link rel="stylesheet" href="kraken.css" type="text/css">
</head>
<body>
<!-- Old Browser Warning -->
<!-- If you're supporting IE 6-7, remove this -->
<!--[if lt IE 8]>
<section class="container">
Did you know that your web browser is a bit old? Some of the content on this site might not work right as a result. <a href="http://whatbrowser.org">Upgrade your browser</a> for a faster, better, and safer web experience.
</section>
<![endif]-->
<section class="container">
<h1>Hello World!</h1>
<p>Content here.</p>
</section>
<!-- Javascript -->
<!-- In the footer for better performance -->
<script src="js/kraken.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<!-- (Via HTML5 Boilerplate: http://html5boilerplate.com/) -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>