forked from artic-network/artic-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (25 loc) · 1.16 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
<!doctype html>
<html>
<head>
<title>auspice</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.png" type="image/png">
<link rel="icon" href="favicon.png" type="image/png">
</head>
<body class="viewport">
<div id='root'>
</div>
<!-- asyncronously load the react bundle -->
<script async src="dist/bundle.js"></script>
<!-- by placing this in the body, we mimic async ability
This is important as sometimes unpkg takes 10s to return and, if in the header
this blocks the page load.
https://codepen.io/tigt/post/async-css-without-javascript
https://stackoverflow.com/questions/9271276/is-the-recommendation-to-include-css-before-javascript-invalid
-->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,700">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
</body>
</html>