-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (86 loc) · 3.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="generator" content="Polymer Starter Kit">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<!-- Meta viewport from old index.html -->
<!-- <meta name="viewport" content="width=768, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> -->
<title>Lightning Round</title>
<meta name="description" content="GDQ's Twitter question harvesting system">
<!--
If deploying to a non-root path, replace href="/" with the full path to the project root.
For example: href="/polymer-starter-kit/relative-path-example/"
-->
<base href="/">
<link rel="icon" href="images/favicon.ico">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#3f51b5">
<!-- Add to homescreen for Chrome on Android. Fallback for manifest.json -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Lightning Round">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Lightning Round">
<!-- Homescreen icons -->
<link rel="apple-touch-icon" href="images/manifest/icon-48x48.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/manifest/icon-72x72.png">
<link rel="apple-touch-icon" sizes="96x96" href="images/manifest/icon-96x96.png">
<link rel="apple-touch-icon" sizes="144x144" href="images/manifest/icon-144x144.png">
<link rel="apple-touch-icon" sizes="192x192" href="images/manifest/icon-192x192.png">
<!-- Tile icon for Windows 8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/manifest/icon-144x144.png">
<meta name="msapplication-TileColor" content="#3f51b5">
<meta name="msapplication-tap-highlight" content="no">
<!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
<script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script>
<!-- Load the ShadyCSS apply-shim to make @apply statements work in our Polymer elements -->
<link rel="import" href="bower_components/shadycss/apply-shim.html">
<!-- Load font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat">
<!-- Load Raven, the library for the Sentry.io error-tracking service -->
<script src="https://cdn.ravenjs.com/3.15.0/raven.min.js"></script>
<script>
Raven.config('https://[email protected]/175826', {
release: '{{commit_hash}}', // populated by npm build script
environment: 'development' // changed to "production" by npm build script
}).install();
window.onunhandledrejection = function (evt) {
Raven.captureException(evt.reason);
};
</script>
<!-- Load your application shell -->
<link rel="import" href="src/lr-app.html">
<!-- Add any global styles for body, document, etc. -->
<style>
body {
background-color: #dedede;
font-family: 'Montserrat', sans-serif;
min-height: 100vh;
}
#loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 32px;
transition: opacity 250ms;
user-select: none;
pointer-events: none;
}
</style>
</head>
<body>
<lr-app></lr-app>
<div id="loading">Loading...</div>
<noscript>
Please enable JavaScript to view this website.
</noscript>
<!-- Built using Polymer Starter Kit -->
</body>
</html>