-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
57 lines (50 loc) · 1.94 KB
/
index2.html
File metadata and controls
57 lines (50 loc) · 1.94 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
<!DOCTYPE html>
<!--
! This Source Code Form is subject to the terms of the Mozilla Public
! License, v. 2.0. If a copy of the MPL was not distributed with this
! file, You can obtain one at http://mozilla.org/MPL/2.0/.
!
! Copyright 2014 Mark Craig
-->
<html lang="en" ng-app="main">
<head>
<meta charset="utf-8">
<title>Reader</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-resource.min.js"></script>
<script type="text/javascript" src="js/angular-route.min.js"></script>
<script type="text/javascript" src="js/angular-sanitize.min.js"></script>
<script type="text/javascript" src="js/ui-bootstrap-tpls-0.10.0.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="js/main.js"></script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body { padding-bottom: 70px; }
.nav, .pagination, .carousel, .panel-title a { cursor: pointer; }
</style>
</head>
<body>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="#"><span class="glyphicon glyphicon-home"></span> Read</a>
</li>
<li><a href="#/configure"><span
class="glyphicon glyphicon-cog"></span> Configure</a></li>
<li><a href="#/about"><span
class="glyphicon glyphicon-info-sign"></span> About</a></li>
</ul>
</div>
</nav>
<div ng-view></div>
<div class="container navbar-fixed-bottom">
<footer class="text-center">
<p class="text-muted">
Copyright 2013-2014 Mark Craig,
License <a href="http://mozilla.org/MPL/2.0/">MPL 2.0</a>
</p>
</footer>
</div>
</body>
</html>