-
Notifications
You must be signed in to change notification settings - Fork 43
/
index.html
54 lines (54 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Perflink | JS Benchmarks</title>
<link rel="icon" type="image/png" href="/icon.png" />
<meta
name="description"
content="JavaScript performance benchmarks you can share via URL."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta property="og:title" content="Perflink" />
<meta
property="og:description"
content="JavaScript performance benchmarks you can share via URL."
/>
<meta
property="og:image"
content="https://user-images.githubusercontent.com/1457604/80722022-d21e2400-8af6-11ea-9884-555e39312b62.png"
/>
<meta property="og:url" content="https://perf.link" />
<meta name="twitter:card" content="summary_large_image" />
<script>
;(function () {
var redirect = sessionStorage.redirect
delete sessionStorage.redirect
if (redirect && redirect != location.href)
history.replaceState(null, null, redirect)
})()
let vh = window.innerHeight * 0.01
document.documentElement.style.setProperty('--vh', `${vh}px`)
</script>
<link rel="stylesheet" href="/index.css" />
<script defer src="/library/prism.js"></script>
<script src="/index.js" type="module"></script>
</head>
<body></body>
<script
defer
async
src="https://www.googletagmanager.com/gtag/js?id=UA-125574008-2"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-125574008-2')
</script>
</html>