-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
32 lines (32 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Star Trek Fleet Command | Interactive Galaxy Map</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:image" content="assets/og-img.png" />
<meta property="og:site_name" content="Star Trek Fleet Command Galaxy Map" />
<meta property="og:type" content="object" />
<meta property="og:title" content="Star Trek Fleet Command Galaxy Map" />
<meta property="og:url" content="https://stfcpro.com" />
<meta property="og:author" content="https://github.com/joeycrash135" />
<meta property="og:description" content="Star Trek Fleet Command Interactive Map. A map made for Star Trek Fleet Command by Scopely." />
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.min.css"/>
<link rel="stylesheet" href="./assets/css/style.css"/>
</head>
<body class="custom-popup">
<div id="map"></div>
<script src="https://cdn.jsdelivr.net/combine/npm/[email protected]/dist/leaflet.min.js,npm/[email protected]/dist/jquery.min.js,npm/[email protected]/leaflet.rotatedMarker.min.js,npm/[email protected]/dist/leaflet.groupedlayercontrol.min.js,npm/[email protected]/dist/typeahead.bundle.min.js,npm/[email protected]/dist/js/select2.min.js"></script>
<script src="assets/js/stfc-map.js" type="text/javascript" defer></script>
<script src="assets/js/stfc-ui.js" type="text/javascript" defer></script>
<script>
$(function() {
STFCMap.init();
});
</script>
</body>
</html>