-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 946 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>F O R A G E S</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
<!-- React.js -->
<script src="js/react.js"></script>
<!-- Immutable.js -->
<script src="js/immutable.js"></script>
<!-- PouchDB -->
<script src="js/pouchdb.js"></script>
<script src="js/pouchdb-authentication.js"></script>
<!-- Leaflet.js -->
<link rel="stylesheet" href="css/leaflet.css" />
<script src="js/leaflet.js"></script>
<!-- Geohash -->
<script src="js/geohash.js"></script>
</head>
<body>
<div id="wrapper"></div>
<script src="js/index.js"></script>
<script type="text/javascript">
React.render(
React.createElement(Main, null),
document.getElementById('wrapper')
);
</script>
</body>
</html>