-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 983 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/main.css">
</head>
<body ng-app="app.cnDocs" ng-controller="DocsController as vm" class="docs-stuffs">
<div ng-include="'app/docs-navbar.html'"></div>
<div btf-markdown
ng-repeat="section in vm.sections"
ng-show="vm.selectedSection == section"
ng-include="vm.templateLocation(section)">
</div>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/ui-router/release/angular-ui-router.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/showdown/src/showdown.js"></script>
<script src="bower_components/angular-markdown-directive/markdown.js"></script>
<script src="app/docs.module.js"></script>
<script src="app/docs.config.js"></script>
<script src="app/docs.controller.js"></script>
</body>
</html>