-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (32 loc) · 960 Bytes
/
index.html
File metadata and controls
40 lines (32 loc) · 960 Bytes
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
<!DOCTYPE html>
<html lang="en" ng-app='app'>
<head>
<base href="/">
<meta charset="UTF-8">
<title ng-bind="($title || 'Home') + ' - ngWP'">ngWP</title>
<link rel="stylesheet" type="text/css" href="/dist/vendor.min.css">
<link rel="stylesheet" type="text/css" href="/css/style.min.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" ui-sref="home">ngWP</a>
</div>
<ul class="nav navbar-nav">
<li><a ui-sref="home">Home</a></li>
<li><a ui-sref="posts">Posts</a></li>
<li><a ui-sref="page({ slug: 'sample-page' })">Sample Page</a></li>
</ul>
<search-form></search-form>
</div>
</nav>
<div class="container">
<div class="ui-view-container">
<div ui-view> </div>
</div>
</div>
<script src="/dist/vendor.min.js"></script>
<script src="app.js"></script>
</body>
</html>