blob: 3496287cbba7d4b1e05f2e3231e6222c6cac26be (
plain)
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
|
---
import Cidr from "../components/Cidr";
import { GOOGLE_ANALYTICS_ID } from "../config";
const title = "CIDR Calculator Widget";
const description = "Embeddable CIDR calculator widget for network calculations";
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/ico/favicon.ico" />
<meta name="viewport" content="width=device-width" />
<title>{title}</title>
<meta name="description" content={description} />
<meta name="robots" content="noindex, follow" />
<!-- Import global styles -->
<style is:global>
@import "../styles/global.css";
</style>
<!-- Embed-specific styles -->
<style>
body {
margin: 0;
padding: 0;
background: transparent;
overflow: hidden;
}
.embed-container {
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 8px;
padding: 10px;
box-sizing: border-box;
}
</style>
<script async src={`https://www.googletagmanager.com/gtag/js?id=${GOOGLE_ANALYTICS_ID}`}></script>
<script define:vars={{ GOOGLE_ANALYTICS_ID }} is:inline>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", GOOGLE_ANALYTICS_ID);
</script>
</head>
<body>
<div class="embed-container">
<Cidr client:load />
</div>
<script is:inline>
// Handle messages from parent window for potential configuration
window.addEventListener('message', (event) => {
// You can add functionality here to configure the widget based on messages
// from the parent window if needed in the future
});
// Notify parent when loaded
window.addEventListener('load', () => {
if (window.parent !== window) {
window.parent.postMessage({ type: 'cidr-widget-loaded' }, '*');
}
});
</script>
</body>
</html>
|