-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1019 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en" ng-app="drib-api">
<head>
<meta charset="utf-8">
<title>Dribbble API</title>
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" href="css/app.css"/>
</head>
<body ng-controller="appCtrl">
<div class="container">
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#/">Dribbble Feed</a>
<ul class="nav">
</ul>
</div>
</div>
<div ng-view></div>
<h1>Here is a Dribbble feed for: {{ name }}</h1>
<div ng-controller="shotsListCtrl">
<ul class="thumbnails">
<li class="thumbnail" ng-repeat="object in list.data"><img src="{{ object.images.normal }}"</li>
</ul>
</div>
</div>
<script src="lib/angular/angular.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
</body>
</html>