-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 845 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="author" content="Christoph Friedrich">
<title>usable-wg-gesucht</title>
<!-- jQuery for painless ajaxing and eventing -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<!-- Leaflet stuff -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<!-- own stuff -->
<link rel="stylesheet" href="style.css" />
<script src="wggesucht.js"></script>
<script src="app.js"></script>
</head>
<body>
<button onclick="crawl()">Crawl</button>
<h1>usable-wg-gesucht</h1>
<div id="content">
<div id="offers"></div>
<div id="map"></div>
<div id="details"></div>
</div>
</body>
</html>