-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
85 lines (64 loc) · 3.15 KB
/
index.html
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
82
83
84
85
<!doctype html>
<!--[if IE 7 ]> <html class="no-js oldie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="no-js ie9" lang="en"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="UTF-8" />
<title>Page title</title>
<meta name="description" content="Default site description" />
<meta name="robots" content="/robots.txt" />
{# Prevent Search Engines using ODP data. See https://support.google.com/webmasters/answer/35624?hl=en #}
<meta name="robots" content="NOODP">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Disable skype from styling numbers as skype buttons -->
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
<!-- For IE, use the latest supported mode, see http://stackoverflow.com/a/6771584 -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<link rel="stylesheet" href="/assets/css/styles.min.css?v=1.0">
<!-- Icons - https://github.com/audreyr/favicon-cheat-sheet -->
<!-- ICO generator: http://www.icoconverter.com -->
<!-- IE6-10 -->
<link rel="shortcut icon" sizes="16x16 24x24 32x32 48x48 64x64" href="/favicon.ico">
<!-- Everybody else -->
<link rel="icon" sizes="16x16 24x24 32x32 48x48 64x64" href="/favicon.ico">
<!-- iOS 2.0+ and Android 2.1+ -->
<link rel="apple-touch-icon" href="/favicon-152.png">
<!-- Metro tile -->
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="/favicon-144.png">
<!-- Twitter Card and Open Graph protocol tags -->
<meta name="twitter:card" content="summary" /> <!-- or 'summary_large_image' -->
<meta name="twitter:site" content="twitter-username" />
<meta name="twitter:creator" content="twitter-username" />
<meta property="og:url" content="page url" />
<meta property="og:title" content="Page title" />
<meta property="og:description" content="Default site description" />
<meta property="og:image" content="/favicon-152.png" />
<!-- end Twitter Card and Open Graph protocol tags -->
<script src="/assets/libs/modernizr.js"></script>
<!--[if lte IE 8 ]>
<script src="/assets/libs/bower_components/respond/dest/respond.min.js"></script>
<![endif]-->
<!-- adding GA in head to increase likelihood of tracking even if user should leave before page has completely loaded -->
<script src="/assets/js/analytics.js" async></script>
</head>
<body itemscope itemtype="http://schema.org/WebPage">
<header class="siteheader" role="banner">
<nav role="navigation"></nav>
</header>
<main class="pagecontent" role="main">
</main>
<footer class="sitefooter" role="contentinfo">
</footer>
<!--
Do we need jQuery? Could we go Vanilla? (https://gist.github.com/liamcurry/2597326)
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
window.jQuery || document.write("<script src='/assets/libs/jquery-1.9.1.min.js'>\x3C/script>")
</script>
-->
<script src="/assets/js/libs.min.js"></script>
<script src="/assets/js/global.min.js"></script>
</body>
</html>