-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
28 lines (24 loc) · 1.1 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
<!doctype html>
<html>
<head>
<title>olmsted</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="/images/olmsted.svg" type="image/png">
<link rel="icon" href="/images/olmsted.svg" 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">
</body>
</html>