-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dyson Sphere Program Ratios Calculator</title>
<link rel="icon" type="image/svg+xml" href="/src/images/favicon.svg"/>
<link rel="mask-icon" href="/src/images/favicon.svg" color="#ffffff"/>
<link rel="apple-touch-icon" href="/src/images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="Calculator tool to help you figure out ratios of how many buildings you need"/>
<meta name="keywords" content="dyson sphere program, dyson sphere program calculator, ratios, dyson sphere ratios, dsp, dsp ratios, dsp calculator">
<meta property="og:title" content="DSP Ratios"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://dsp-ratios.com"/>
<meta property="og:image" content="https://dsp-ratios.com/meta-image.png"/>
<meta property="og:description" content="Calculator tool to help you figure out ratios of how many buildings you need"/>
<meta property="og:site_name" content="DSP Ratios"/>
<link rel="stylesheet" href="/src/index.css"/>
<script
defer
data-domain="dsp-ratios.com"
data-api="https://steam-news-proxy.vercel.app/api/event"
src="https://steam-news-proxy.vercel.app/script.manual.js"
></script>
<script>
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
(function(location) {
if (location.search[1] === '/' ) {
let decoded = location.search.slice(1).split('&').map(s => s.replace(/~and~/g, '&')).join('?');
window.history.replaceState(null, null,
location.pathname.slice(0, -1) + decoded + location.hash
);
}
}(window.location));
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>