49 lines
No EOL
1.2 KiB
HTML
49 lines
No EOL
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link href="style.css" rel="stylesheet">
|
|
<title>A11y Elevator List</title>
|
|
</head>
|
|
<body>
|
|
<h1>A11y Elevator List</h1>
|
|
<nav>
|
|
<ul>
|
|
<li>
|
|
<a href="index.html">
|
|
Elevator List
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="about.html">
|
|
What is this?
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
<h2>Station List</h2>
|
|
<div>
|
|
<span>Last Updated: <b id="lastUpdated"></b></span>
|
|
<button id="loadElevators">Daten vom HVV abrufen</button>
|
|
<button id="loadOSM">OSM Daten abrufen</button>
|
|
</div>
|
|
<br>
|
|
|
|
<div class="filters">
|
|
<input placeholder="Station suchen" id="searchStation">
|
|
<button id="stationsNearMe">
|
|
<span data-icon="location-searching" class="size-m"></span>
|
|
Stationen in der Nähe
|
|
</button>
|
|
</div>
|
|
|
|
<ul id="stationList">
|
|
</ul>
|
|
</main>
|
|
<script type="text/javascript" src="elevators.js"></script>
|
|
</body>
|
|
</html> |