-
Notifications
You must be signed in to change notification settings - Fork 59
/
index.html
63 lines (47 loc) · 2.35 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Kickoff</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
██╗ ██╗██╗ ██████╗██╗ ██╗ ██████╗ ███████╗███████╗
██║ ██╔╝██║██╔════╝██║ ██╔╝██╔═══██╗██╔════╝██╔════╝
█████╔╝ ██║██║ █████╔╝ ██║ ██║█████╗ █████╗
██╔═██╗ ██║██║ ██╔═██╗ ██║ ██║██╔══╝ ██╔══╝
██║ ██╗██║╚██████╗██║ ██╗╚██████╔╝██║ ██║
╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
Built with Kickoff - trykickoff.com
-->
<link rel="stylesheet" href="/assets/dist/css/kickoff.css">
<!-- For mobile icons & social metatags etc, see http://trykickoff.com/learn/html.html#socialmeta -->
<script>
var win = window, doc = win.document, docElem = doc.documentElement;
// Replace 'no-js'/'js' class on <html>
docElem.className = docElem.className.replace(/\bno-js\b/g, '') + ' js ';
/*
Dynamically load scripts / cutting the mustard test
https://gist.github.com/nicbell/9a9c919e6d69aff47e285945550b445c
*/
</script>
<!-- Configure Polyfills https://cdn.polyfill.io/ -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
</head>
<body>
<div class="skipToContent">
<a href="#main" class="btn btn--primary">Skip to main content</a>
</div>
<!--[if lte IE 9]>
<div class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
<![endif]-->
<div id="main" class="l-container" role="main">
</div><!-- Close #main -->
<script src="/assets/dist/js/kickoff.js"></script>
<!--
Use Google Analytics? Add the embed from here:
https://gist.github.com/mrmartineau/6b96e3e12c315af33ad5
-->
</body>
</html>