forked from Alex-Guha/wynnbuilder-beta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 1.13 KB
/
index.html
File metadata and controls
29 lines (24 loc) · 1.13 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
<!DOCTYPE html>
<html scroll-behavior="smooth">
<head>
<meta name="HandheldFriendly" content="true" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no" />
<!-- nunito font, copying wynndata -->
<meta name="viewport" content="width=device-width, initial-scale=.45, user-scalable=no">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link href="./thirdparty/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../css/sq2bs.css">
<link rel="icon" href="../media/icons/new/builder.png">
<link rel="manifest" href="manifest.json">
<title>WynnBuilder</title>
</head>
<body id="body"></body>
<script type="text/javascript">
let getUrl = window.location;
let siteBase = getUrl.pathname.startsWith('/wynnbuilder-beta.github.io/') ? '/wynnbuilder-beta.github.io' : '';
let baseUrl = getUrl.protocol + "//" + getUrl.host + siteBase + "/";
let hash = window.location.hash;
window.location.href = baseUrl + "builder/" + hash;
</script>
</html>