forked from cvereau/DevCode.AngularJSFundamentos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (64 loc) · 2.98 KB
/
Copy pathindex.html
File metadata and controls
75 lines (64 loc) · 2.98 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>News Wiki</title>
<!--Page Styles-->
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/app.css"/>
<link rel="stylesheet" href="css/toastr.min.css"/>
<!--Angular Scripts-->
<script src="js/angular.min.js"></script>
<script src="js/angular-mocks.js"></script>
<script src="js/angular-resource.min.js"></script>
<script src="js/angular-ui-router.min.js"></script>
<script src="js/angular-messages.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-i18n/1.4.6/angular-locale_es-pe.min.js"></script>
<!--Application Script-->
<script src="app/app.js"></script>
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/mask.js"></script>
<script src="js/ui-bootstrap-tpls-0.14.3.min.js"></script>
<script src="js/toastr.min.js"></script>
<!-- Controllers -->
<script src="app/news/newsCtrl.js"></script>
<script src="app/categories/categoriesCtrl.js"></script>
<script src="app/news/newsDetailCtrl.js"></script>
<script src="app/news/newsEditCtrl.js"></script>
<!--Services-->
<script src="common/services/common.services.js"></script>
<script src="common/services/common.servicesMock.js"></script>
<script src="common/services/categories/categoriesService.js"></script>
<script src="common/services/news/newsResource.js"></script>
</head>
<body ng-app="newsWikiApp">
<nav class="navbar navbar-inverse">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-brand" href="#"><span class="title">News Wiki</span></a>
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target=".navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li ui-sref-active="active"><a ui-sref="home">
<i class="glyphicon glyphicon-home"></i></a></li>
<li ui-sref-active="active"><a ui-sref="newsList">Noticias</a></li>
<li ui-sref-active="active"><a ui-sref="newsEdit.info({idNoticia:0})"><i class="glyphicon glyphicon-plus"></i> Agregar Noticia</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<div ui-view></div>
</div>
</body>
</html>