-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
67 lines (61 loc) · 4.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Releases</title>
<meta name="description" content="Keep track of open source releases" />
<meta name="theme-color" content="#448aff" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,500,700,400italic|Material+Icons"
rel="preload"
as="style"
onload="this.onload=null; this.rel='stylesheet'"
/>
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/png" sizes="96x96" href="/static/img/favicon-96.png" />
<link rel="apple-touch-icon" sizes="192x192" href="/static/img/icon-192.png" />
<link rel="apple-touch-icon" sizes="512x512" href="/static/img/icon-512.png" />
<link rel="apple-touch-startup-image" href="/static/img/splash-1242x2208.png" />
<style>
#loading0 {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #fafafa;
z-index: 9999999;
transition: opacity 300ms linear;
-webkit-transition: opacity 300ms linear;
}
#loading0.opacity0 {
opacity: 0;
}
#loading1 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100px;
height: 100px;
margin: auto;
fill: #448aff;
}
</style>
<!-- prettier-ignore -->
<script>
// FID polyfill
!function(n,e){var t,o,i,c=[],f={passive:!0,capture:!0},r=new Date,a="pointerup",u="pointercancel";function p(n,c){t||(t=c,o=n,i=new Date,w(e),s())}function s(){o>=0&&o<i-r&&(c.forEach(function(n){n(o,t)}),c=[])}function l(t){if(t.cancelable){var o=(t.timeStamp>1e12?new Date:performance.now())-t.timeStamp;"pointerdown"==t.type?function(t,o){function i(){p(t,o),r()}function c(){r()}function r(){e(a,i,f),e(u,c,f)}n(a,i,f),n(u,c,f)}(o,t):p(o,t)}}function w(n){["click","mousedown","keydown","touchstart","pointerdown"].forEach(function(e){n(e,l,f)})}w(n),self.perfMetrics=self.perfMetrics||{},self.perfMetrics.onFirstInputDelay=function(n){c.push(n),s()}}(addEventListener,removeEventListener);
</script>
</head>
<body>
<!-- prettier-ignore -->
<div id="loading0"><svg id="loading1" viewBox="0 0 105 105" xmlns="http://www.w3.org/2000/svg"><circle cx="12.5" cy="12.5" r="12.5"><animate attributeName="fill-opacity" begin="0s" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="12.5" cy="52.5" r="12.5" fill-opacity=".5"><animate attributeName="fill-opacity" begin="100ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="52.5" cy="12.5" r="12.5"><animate attributeName="fill-opacity" begin="300ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="52.5" cy="52.5" r="12.5"><animate attributeName="fill-opacity" begin="600ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="92.5" cy="12.5" r="12.5"><animate attributeName="fill-opacity" begin="800ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="92.5" cy="52.5" r="12.5"><animate attributeName="fill-opacity" begin="400ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="12.5" cy="92.5" r="12.5"><animate attributeName="fill-opacity" begin="700ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="52.5" cy="92.5" r="12.5"><animate attributeName="fill-opacity" begin="500ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle><circle cx="92.5" cy="92.5" r="12.5"><animate attributeName="fill-opacity" begin="200ms" dur="1s" values="1;.2;1" calcMode="linear" repeatCount="indefinite" /></circle></svg></div>
<div id="app"></div>
<noscript>Javascript is required</noscript>
<script type="module" src="./src/main.ts"></script>
</body>
</html>