-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex3.html
More file actions
39 lines (31 loc) · 988 Bytes
/
index3.html
File metadata and controls
39 lines (31 loc) · 988 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
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href='css/google.css' rel='stylesheet' type='text/css'>
<link href="css/main.css" rel="stylesheet" />
<script src="js/shared/angular.min.js"></script>
</head>
<body ng-app="AppMarketApp">
<div class="header">
<div class="container">
<h1>App Market</h1>
</div>
</div>
<div class="main" ng-controller="MainController2">
<div class="container">
<div ng-repeat="app in apps" class="card">
<app-info></app-info>
<install-app></install-app>
</div>
</div>
</div>
<!-- Modules -->
<script src="js/appMarket.js"></script>
<!-- Controllers -->
<script src="js/controllers/MainController.js"></script>
<!-- Directives -->
<script src="js/directives/appInfo2.js"></script>
<script src="js/directives/installApp.js"></script>
</body>
</html>