-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcalculator.html
More file actions
77 lines (73 loc) · 3.34 KB
/
calculator.html
File metadata and controls
77 lines (73 loc) · 3.34 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- USER FACING -->
<link rel="icon" href="/icon.ico" />
<title>Weapon Calculator | TC:F Wiki</title>
<!-- COMMON TAGS -->
<meta charset="utf-8" />
<meta name="title" content="Weapon Calculator | TC:F Wiki" />
<meta
name="keywords"
content="the cycle frontier, tcf, the cycle, cycle game, cycle frontier, geography, the cycle frontier wiki, cycle wiki, the cycle wiki, the cycle: frontier, cycle: frontier, the cycle: frontier wiki, map, wiki, game, geography, geoguessr, free, interactive map, map, interactive, calculator, weapon calculator, weapon calc, calc, generator, resource, loadout generator, tcf wiki, resource map, item map, loot map, dead drop, item tracker, tracker, quest tracker"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Search Engine -->
<meta name="description" content="Weapon calculator for The Cycle Frontier | TC:F Wiki" />
<meta name="image" content="https://cdn.wikimg.net/en/tcfwiki/images/5/59/Site-wiki.png" />
<!-- Schema.org for Google -->
<meta itemprop="name" content="Weapon Calculator | TC:F Wiki" />
<meta itemprop="description" content="Weapon calculator for The Cycle Frontier | TC:F Wiki" />
<meta itemprop="image" content="https://cdn.wikimg.net/en/tcfwiki/images/5/59/Site-wiki.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Weapon Calculator | TC:F Wiki" />
<meta name="twitter:description" content="Weapon calculator for The Cycle Frontier | TC:F Wiki" />
<meta name="twitter:site" content="@TCFWiki" />
<meta name="twitter:image:src" content="https://cdn.wikimg.net/en/tcfwiki/images/5/59/Site-wiki.png" />
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Weapon Calculator | TC:F Wiki" />
<meta name="og:description" content="Weapon calculator for The Cycle Frontier | TC:F Wiki" />
<meta name="og:image" content="https://cdn.wikimg.net/en/tcfwiki/images/5/59/Site-wiki.png" />
<meta name="og:url" content="https://tools.thecyclefrontier.wiki/calculator" />
<meta name="og:site_name" content="The Cycle Frontier Wiki" />
<meta name="og:type" content="website" />
<script type="module" src="/src/calculator.ts"></script>
<script defer src="https://code.highcharts.com/highcharts.js"></script>
<script defer src="https://code.highcharts.com/modules/series-label.js"></script>
<script defer src="https://code.highcharts.com/modules/exporting.js"></script>
<script defer src="https://code.highcharts.com/modules/export-data.js"></script>
<script defer src="https://code.highcharts.com/modules/accessibility.js"></script>
<!-- Google analytics -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9LEH0T526D"></script>
<script>
// @ts-ignore
window.dataLayer = window.dataLayer || [];
// @ts-ignore
function gtag() {
dataLayer.push(arguments);
}
// @ts-ignore
gtag("js", new Date());
// @ts-ignore
gtag("config", "G-9LEH0T526D");
</script>
</head>
<body>
<div id="modal"></div>
<div id="site-notice"></div>
<div id="header"></div>
<main></main>
<div id="footer"></div>
<div id="loading" aria-hidden="true"></div>
<style>
main {
opacity: 0;
}
main.loaded {
opacity: 1;
}
</style>
</body>
</html>