-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Primary Meta Tags -->
<title>Cyberpunk 2077 Explorer</title>
<meta name="title" content="Cyberpunk 2077 Explorer">
<meta name="description" content="Interactive Map of Cyberpunk 2077's Game Logic">
<!-- Open Graph / Facebook -->
<meta name="og:type" content="website">
<meta name="og:url" content="https://2077.johnsolo.net/">
<meta name="og:title" content="Cyberpunk 2077 Explorer">
<meta name="og:description" content="Interactive Map of Cyberpunk 2077's Game Logic">
<meta name="og:image" content="https://2077.johnsolo.net/preview.jpg">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://2077.johnsolo.net/">
<meta name="twitter:title" content="Cyberpunk 2077 Explorer">
<meta name="twitter:description" content="Interactive Map of Cyberpunk 2077's Game Logic">
<meta name="twitter:image" content="https://2077.johnsolo.net/preview.jpg">
<meta name="twitter:card" content="summary_large_image">
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.15.3/ace.min.js" integrity="sha512-qz0ztkhkjaI/0GtyBQTsqh8jPxXwZB54vrZpujzzQ9aoi+LYO4V9ybmylrASlvFUIjXI+A9dBgNtMZ44xJieMg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.15.3/mode-swift.min.js" integrity="sha512-reFKQ9bga8fLu1wGBaqgj5zyK5L/jpul3tN5ujfR8TnkW6gATyefggKehk+kFmQWKTid1x+DgDrbJP/JaWU6xw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.15.3/theme-tomorrow_night_bright.min.js" integrity="sha512-nux1710qmW3nLhwFEL31LxJVkA0NpSrz6LLwo7YxA/CikSnh6r5qLsdWLRISYRXtXBcOXXlUAP4V6+iYMyupTw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>