-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
43 lines (41 loc) · 1.53 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Mina Block Explorer</title>
<meta name="description" content="Explore the Mina blockchain" />
<link data-trunk rel="rust" href="./Cargo.toml" />
<link data-trunk rel="tailwind-css" href="./css/styles.css" />
<link data-trunk rel="copy-dir" href="./assets" />
<link data-trunk rel="copy-dir" href="./src/scripts/" />
<link
data-trunk
rel="icon"
type="image/svg+xml"
href="./assets/img/logo.svg"
sizes="any"
/>
<link rel="manifest" href="/assets/manifest.webmanifest" />
<meta name="theme-color" content="#21252D" />
</head>
<script>
if (localStorage.getItem("ga-opt-out") === "false") {
// Dynamically create and insert the script tag for Google Tag Manager
var gtagScript = document.createElement("script");
gtagScript.async = true; // Ensure the script is loaded asynchronously
gtagScript.src =
"https://www.googletagmanager.com/gtag/js?id=G-5LPF0LNCRM";
document.head.appendChild(gtagScript);
// Initialize dataLayer and define gtag function
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-5LPF0LNCRM");
}
</script>
<body class="h-screen flex flex-col bg-main-background pt-20"></body>
</html>