-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphoto-share.html
51 lines (36 loc) · 2.07 KB
/
photo-share.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
51
<!doctype html>
<html ng-app="cs142App" ng-controller="MainController">
<head>
<title>{{main.title || "CS142 Class Project"}}</title>
<link href="./node_modules/angular-material/angular-material.css" rel="stylesheet" />
<script src="./node_modules/angular/angular.js" type="text/javascript"></script>
<script src="./node_modules/angular-animate/angular-animate.js" type="text/javascript"></script>
<script src="./node_modules/angular-aria/angular-aria.js" type="text/javascript"></script>
<script src="./node_modules/angular-material/angular-material.js" type="text/javascript"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="mainController.js"></script>
<link rel="stylesheet" type="text/css" href="main.css" />
<script src="components/user-list/user-listController.js"></script>
<link rel="stylesheet" type="text/css" href="components/user-list/user-list.css" />
<script src="components/user-detail/user-detailController.js"></script>
<link rel="stylesheet" type="text/css" href="components/user-detail/user-detail.css" />
<script src="components/user-photos/user-photosController.js"></script>
<link rel="stylesheet" type="text/css" href="components/user-photos/user-photos.css" />
<script src="components/login-register/login-registerController.js"></script>
<script src="./node_modules/angular-resource/angular-resource.js" type="text/javascript"></script>
<!-- <script src="modelData/photoApp.js"></script> -->
</head>
<body layout="column">
<md-toolbar layout="row" id="toolbar">
<span flex=""></span> Ver.{{versionString}}
</md-toolbar>
<div class="container" flex layout="row">
<md-sidenav ng-if="location.path() !== '/login-register'" md-is-locked-open="true" class="md-whiteframe-z2">
<div ng-include="'components/user-list/user-listTemplate.html'" ng-controller="UserListController"></div>
</md-sidenav>
<md-content flex id="content">
<div ng-view></div>
</md-content>
</div>
</body>
</html>