forked from rnarian/catapult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (65 loc) · 3.56 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Title</title>
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:url" content="http://url.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Title">
<meta property="og:description" content="Description">
<meta property="og:image" content="http://url.com/screenshot.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@twitterhandle">
<meta name="twitter:creator" content="@twitterhandle">
<link rel="stylesheet" href="assets/css/style.css">
<!-- Fav- & Apple-Touch-Icons -->
<!-- Favicon -->
<link rel="shortcut icon" href="assets/images/favicon/favicon.ico" type="image/x-icon">
<!-- non-retina iPhone pre iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/114x114.png" sizes="57x57">
<!-- non-retina iPad pre iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/144x144.png" sizes="72x72">
<!-- non-retina iPad iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/152x152.png" sizes="76x76">
<!-- retina iPhone pre iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/114x114.png" sizes="114x114">
<!-- retina iPhone iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/120x120.png" sizes="120x120">
<!-- retina iPad pre iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/144x144.png" sizes="144x144">
<!-- retina iPad iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/152x152.png" sizes="152x152">
<!-- retina iPhone 6 iOS 7 -->
<link rel="apple-touch-icon" href="assets/images/favicon/180x180.png" sizes="180x180">
<!-- Grunticon
<script>
/* grunticon Stylesheet Loader | https://github.com/filamentgroup/grunticon | (c) 2012 Scott Jehl, Filament Group, Inc. | MIT license. */
window.grunticon=function(e){if(e&&3===e.length){var t=window,n=!(!t.document.createElementNS||!t.document.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect||!document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image","1.1")||window.opera&&-1===navigator.userAgent.indexOf("Chrome")),o=function(o){var r=t.document.createElement("link"),a=t.document.getElementsByTagName("script")[0];r.rel="stylesheet",r.href=e[o&&n?0:o?1:2],a.parentNode.insertBefore(r,a)},r=new t.Image;r.onerror=function(){o(!1)},r.onload=function(){o(1===r.width&&1===r.height)},r.src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw=="}};
grunticon([
"assets/icons/grunticon/icons.data.svg.css",
"assets/icons/grunticon/icons.data.png.css",
"assets/icons/grunticon/icons.fallback.css"
]);
</script>
<noscript><link href="assets/icons/grunticon/icons.fallback.css" rel="stylesheet"></noscript>
-->
<!-- Modernizr -->
<script src="assets/js/modernizr.js"></script>
</head>
<body>
<!-- 3, 2, 1 - Action! -->
<script src="assets/js/build.js"></script>
<!-- Google Analytics -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>