-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (70 loc) · 3.59 KB
/
index.html
File metadata and controls
74 lines (70 loc) · 3.59 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
<!doctype html>
<html lang="en">
<head>
<script>
try {
const theme = localStorage.getItem('theme');
const prefersDark = matchMedia('(prefers-color-scheme: dark)').matches;
if (theme === 'dark' || (theme !== 'light' && prefersDark)) {
document.documentElement.classList.add('dark');
}
} catch (e) {}
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/ethereum-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Forkcast - Ethereum Upgrade Tracker</title>
<meta name="description" content="See what's on the horizon and how it impacts you. Track Ethereum network upgrades and explore how changes affect users, developers, and the ecosystem." />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://forkcast.org/" />
<meta property="og:title" content="Forkcast - Ethereum Upgrade Tracker" />
<meta property="og:description" content="See what's on the horizon and how it impacts you. Track Ethereum network upgrades and explore how changes affect users, developers, and the ecosystem." />
<meta property="og:site_name" content="Forkcast" />
<meta property="og:image" content="https://forkcast.org/forkcast-metacard.png?v=2" />
<meta property="og:image:alt" content="Forkcast - Ethereum Upgrade Tracker" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://forkcast.org/" />
<meta name="twitter:title" content="Forkcast - Ethereum Upgrade Tracker" />
<meta name="twitter:description" content="See what's on the horizon and how it impacts you. Track Ethereum network upgrades and explore how changes affect users, developers, and the ecosystem." />
<meta name="twitter:image" content="https://forkcast.org/forkcast-metacard.png?v=2" />
<meta name="twitter:image:alt" content="Forkcast - Ethereum Upgrade Tracker" />
<!-- Matomo -->
<script>
if (!['localhost', '127.0.0.1', '0.0.0.0', '::1', '[::1]'].includes(window.location.hostname)) {
var _paq = window._paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(["setExcludedQueryParams", ["code","gist"]]);
_paq.push(['enableLinkTracking']);
(function() {
var u="https://ethereumfoundation.matomo.cloud/";
_paq.push(['setTrackerUrl', u+'matomo.php']);
_paq.push(['setSiteId', '40']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.async=true; g.src='https://cdn.matomo.cloud/ethereumfoundation.matomo.cloud/matomo.js'; s.parentNode.insertBefore(g,s);
})();
}
</script>
<!-- End Matomo Code -->
<!-- GitHub Pages SPA redirect handling -->
<script type="text/javascript">
// Handle GitHub Pages SPA redirect
(function(l) {
if (l.search[1] === '/' ) {
var decoded = l.search.slice(1).split('&').map(function(s) {
return s.replace(/~and~/g, '&')
}).join('?');
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash
);
}
}(window.location))
</script>
</head>
<body>
<noscript>This is a single-page app. Visit /llms.txt for guidance on how to traverse and access information from this website.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>