-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 862 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 862 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vehicles</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="node_modules/material-design-lite/dist/material.css">
<script src="node_modules/traceur/bin/traceur.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="node_modules/material-design-lite/dist/material.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCiajshHB9nXoGEzPey9ONc8phGlmN889Y&callback=googleMapsCallback"></script>
</head>
<body>
<script>
function googleMapsCallback(){
System.paths['jquery'] = './node_modules/jquery/dist/jquery.js';
System.import('src/app.js');
}
</script>
</body>
</html>