forked from bitcraftmap/bitcraftmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexTesting.html
More file actions
37 lines (37 loc) · 1.39 KB
/
indexTesting.html
File metadata and controls
37 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>BitCraft Map</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Game map for Bicraft Online game">
<meta name="referrer" content="no-referrer" />
<meta http-equiv="Content-Security-Policy" content="
default-src 'self';
script-src 'self';
style-src 'self';
img-src 'self';
connect-src 'self' https://api.bitcraftmap.com/ https://api.github.com https://gist.githubusercontent.com;
font-src 'self';
frame-src 'none';
object-src 'none';
base-uri 'none';
upgrade-insecure-requests
">
<link rel="icon" href="assets/images/other/Hex_Logo.svg" type="image/svg+xml">
<link rel="canonical" href="https://bitcraftmap.com/" />
<link rel="stylesheet" href="assets/leaflet/leaflet.css"/>
<link rel="stylesheet" href="assets/search/leaflet-search.src.css"/>
<link rel="stylesheet" href="assets/css/map.css"/>
<script src="assets/leaflet/leaflet.js"></script>
<script src="assets/search/leaflet-search.src.js"></script>
<script src="assets/images/manifest.js"></script>
</head>
<body>
<div id="map"></div>
<div id="coords"></div>
<script src="assets/js/map.js"></script>
</body>
<!-- Source: https://github.com/bitcraftmap/bitcraftmap -->
<!-- Made by Manserk -->
</html>