-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="mobile-web-app-capable" content="yes">
<link rel="shortcut icon" type="image/x-icon" href="public/img/favicon.ico">
<title>Carl Flint</title>
<!-- Output stylesheet from webpack config -->
<link rel="stylesheet" type="text/css" href="public/build/home-style.css">
<!--Google analytics-->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116312395-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116312395-2');
</script>
</head>
<body>
<div id="wrapper"></div>
<!-- single page app in bundle.js -->
<script type="text/javascript" src="public/build/vendor-bundle.js"></script>
<script type="text/javascript" src="public/build/home-bundle.js"></script>
</body>
</html>