mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Olympus</title>
|
|
<link rel="stylesheet" href="css/index.css"/>
|
|
<link rel="stylesheet" href="css/panels.css"/>
|
|
<link rel="stylesheet" href="css/Map.css"/>
|
|
<link rel="stylesheet" href="css/AirbaseMarker.css"/>
|
|
<link rel="stylesheet" href="css/UnitMarker.css"/>
|
|
<link rel="stylesheet" href="css/SelectionWheel.css"/>
|
|
<link rel="stylesheet" href="css/SelectionScroll.css"/>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.2/dist/leaflet.css"
|
|
integrity="sha256-sA+zWATbFveLLNqWO2gtiw3HL/lh1giY/Inf1BJ0z14="
|
|
crossorigin=""/>
|
|
<link href="fontawesome/css/all.css" rel="stylesheet">
|
|
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
|
<script src="https://unpkg.com/leaflet@1.9.2/dist/leaflet.js"
|
|
integrity="sha256-o9N1jGDZrf5tS+Ft4gbIK7mYMipq9lqpVJ91xHSyKhg="
|
|
crossorigin=""></script>
|
|
|
|
<script type = "module" src="js/Units/UnitMarker.js"></script>
|
|
<script type = "module" src="js/index.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<table id="content-table">
|
|
<tr id="header">
|
|
<td>
|
|
<div class="settings-panel" id="settings-panel"></div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="map-container">
|
|
<div id="map"></div>
|
|
<div id="log"></div>
|
|
<div class="unit-info-panel" id="unit-info-panel"></div>
|
|
<div class="unit-control-panel" id="unit-control-panel"></div>
|
|
<div class="formation-control-panel" id="formation-control-panel"></div>
|
|
<div id="snackbar"></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |