-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (93 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
115 lines (93 loc) · 2.47 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Redirecting…</title>
<meta name="robots" content="noindex, nofollow">
<script>
(function () {
"use strict";
var CVENT_ORIGIN = "https://www.agenticworld.com/event/468d6d3e-005c-43e5-a8db-b9cfac4b79b1/2026-home-page";
var APEX_HOST = "agenticworld.com";
var WWW_HOST = "www.agenticworld.com";
var REDIRECT_MARKER = "aw_redirected";
var MAX_REDIRECTS = 1;
var currentUrl = new URL(window.location.href);
var currentHost = currentUrl.hostname.toLowerCase();
var redirectCount = parseInt(
currentUrl.searchParams.get(REDIRECT_MARKER) || "0",
10
);
if (!Number.isFinite(redirectCount)) {
redirectCount = 0;
}
if (redirectCount >= MAX_REDIRECTS) {
return;
}
var targetUrl;
if (currentHost === APEX_HOST) {
targetUrl = new URL(
"https://" + WWW_HOST + currentUrl.pathname
);
} else if (currentHost === WWW_HOST) {
targetUrl = new URL(
CVENT_ORIGIN.replace(/\/$/, "") + currentUrl.pathname
);
} else {
return;
}
currentUrl.searchParams.forEach(function (value, key) {
if (key !== REDIRECT_MARKER) {
targetUrl.searchParams.append(key, value);
}
});
targetUrl.hash = currentUrl.hash;
targetUrl.searchParams.set(
REDIRECT_MARKER,
String(redirectCount + 1)
);
window.location.replace(targetUrl.toString());
})();
</script>
<style>
:root {
color-scheme: light dark;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 2rem;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
text-align: center;
}
main {
max-width: 42rem;
}
a {
color: inherit;
}
</style>
</head>
<body>
<main>
<h1>Redirecting…</h1>
<p>
Please wait while we take you to the new Agentic World website.
</p>
<p>
If you are not redirected automatically,
<a href="https://www.agenticworld.com/">
click here to continue
</a>.
</p>
</main>
<noscript>
<meta http-equiv="refresh" content="0; url=https://www.agenticworld.com/">
</noscript>
</body>
</html>