forked from JeremyLikness/AngularTipsAndTricks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 666 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Angular Tips and Tricks</title>
<link rel="stylesheet" href="main.css"/>
<link rel="stylesheet" href="animate.css"/>
<script src="angular.js"></script>
<script src="angular-animate.js"></script>
<script src="app/toc.js"></script>
</head>
<body data-ng-app="angularApp">
<div class="header" data-ng-include="'header.html'"></div>
<h2>Table of Contents of Examples</h2>
<ul data-ng-controller="myCtrl as ctrl">
<li data-ng-repeat="item in ctrl.toc">
<a data-ng-href="{{item.url}}">{{item.name}}</a>
</li>
</ul>
</body>
</html>