-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (36 loc) · 1.6 KB
/
index.html
File metadata and controls
51 lines (36 loc) · 1.6 KB
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
51
<!DOCTYPE html>
<html ng-app="artmap" class="">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Detroit Art map</title>
<!-- Load Montserrat web font - Temp placement TODO to be replaced by local fonts in fonts.scss -->
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<script>document.write('<base href="' + document.location + '" />');</script>
<!--
Library.css file contains all the scss files under moduels folder
-->
<link rel="stylesheet" href="public/stylesheets/library.css"/>
<!--
Application.css file contains all css files which are compiled from scss files under modules folder
-->
<link rel="stylesheet" href="public/stylesheets/application.css"/>
<!--
lib.js file contains the all the js files under libs folder
-->
<script charset="utf-8" src="public/js/library.js"></script>
<!--<!–Javascript file loads–>-->
<script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js"></script>
<script src="http://rawgit.com/angular-ui/angular-google-maps/2.0.X/dist/angular-google-maps.js"></script>
<!--
Application.js file contains the all the js files under modules folder
-->
<script charset="utf-8" src="public/js/application.js"></script>
</head>
<body class="artmap container-fluid" ng-controller="AppCtrl as app">
<!-- header section -->
<div ng-include="'assets/partials/layouts/header.tpl.html'" class="row"></div>
<!-- Content section -->
<div class="row content" ui-view></div>
</body>
</html>