-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (30 loc) · 915 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
<!doctype html>
<html lang="en" ng-app="dabbble">
<head>
<meta charset="utf-8">
<title>Dribbble Posts</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="#/">Dabbble</a>
<ul class="nav">
<li><a href="#/popular">Popular</a></li>
<li><a href="#/everyone">Everyone</a></li>
<li><a href="#/debuts">Debuts</a></li>
</ul>
</div>
</div>
<div ng-view></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>