-
Notifications
You must be signed in to change notification settings - Fork 63
/
index-template.html
24 lines (24 loc) · 948 Bytes
/
index-template.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<link rel="stylesheet" href="/datatables.css">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<script async src="https://www.googletagmanager.com/gtag/js?id=<%= htmlWebpackPlugin.options.googleAnalyticsKey %>"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-58873095-4');
</script>
<div id="root"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=<%= htmlWebpackPlugin.options.googleAPIkey %>"></script>
<noscript>Your browser must have JavaScript enabled in order to use this site.</noscript>
</body>
</html>