forked from achudars/AngularJS-MVC-Web-App-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (60 loc) · 2.67 KB
/
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
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
<!DOCTYPE HTML>
<html lang="en" ng-app='App'>
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=egde"/>
<title>AngularJS App</title>
<!-- LIBRARIES -->
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js'></script>
<script src="https://code.angularjs.org/1.3.0/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.0/angular-route.min.js"></script>
<script src="https://code.angularjs.org/1.3.0/angular-resource.min.js"></script>
<script src="https://code.angularjs.org/1.3.0/angular-sanitize.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<!-- STYLE / THEME -->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet">
<link href="//cdncatalog.com/assets/flat-ui/css/flat-ui.css" rel="stylesheet">
<link href="view/css/style.css" rel="stylesheet">
<!-- THIS APP. -->
<script src="controller/services.js"></script>
<script src="controller/directives.js"></script>
<script src="controller/filters.js"></script>
<script src="controller/controllers.js"></script>
<script src="App.js"></script>
</head>
<body class="container">
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<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" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#/view1">Home</a></li>
<li><a href="#/view2">About</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<div class="row-fluid">
<div class="col-sm-2">
</div><!--/span-->
<div class="col-sm-12">
<div class="jumbotron">
<h1>Web App MVC Template</h1>
<p>This is a web application starter template built with AngularJS with an MVC structure</p>
</div>
<div class="row-fluid" ng-view><!-- VIEWS --></div>
</div><!--/span-->
</div><!--/row-->
</div><!--/.fluid-container-->
</body>
</html>