-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
50 lines (40 loc) · 1.81 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<link rel="icon" type="img/ico" href="static/favicon.ico">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=1">
<!-- Chrome, Firefox OS, Opera and Vivaldi -->
<meta name="theme-color" content="#00387b">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#00387b">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#00387b">
<meta name="author" content="Tarik Huber">
<meta name="description" content="React-Redux Material UI application">
<!-- Use minimum-scale=1 to enable GPU rasterization -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0, maximum-scale=1, minimum-scale=1">
<link rel="stylesheet" type="text/css" href="static/main.css">
<link rel="stylesheet" href="node_modules/react-grid-layout/css/styles.css">
<link rel="stylesheet" href="node_modules/react-resizable/css/styles.css">
</head>
<body >
<div id="root"> </div>
<!-- This script adds the Roboto font to our project. For more detail go to this site: http://www.google.com/fonts#UsePlace:use/Collection:Roboto:400,300,500 -->
<script>
var WebFontConfig = {
google: { families: [ 'Roboto:400,300,500:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<script src="static/bundle.js"></script>
</body>
</html>