-
Notifications
You must be signed in to change notification settings - Fork 6
/
books.html
85 lines (67 loc) · 2.17 KB
/
books.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
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="lib/css/bootstrap.css">
<link rel="stylesheet" href="lib/css/bootstrap.lumen.min.css">
<link rel="stylesheet" href="css/sticky-footer.css">
<meta charset="UTF-8">
<title>Bøger</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-2">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Awesome Bookstore inc.</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-2">
<ul class="nav navbar-nav">
<li class="active"><a href="books.html">Se alle bøger <span class="sr-only">(current)</span></a></li>
<li><a href="#">Om os</a></li>
<li><a href="#">Kontakt</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="login.html">Login</a></li>
</ul>
</div>
</div>
</nav>
<div class="page-header">
<h1>Se alle bøger</h1>
</div>
<table class="table">
<thead>
<th>Titel</th>
<th>Forfatter</th>
<th>Version</th>
<th>Pris AB</th>
<th>Pris Saxo</th>
<th>Pris Cdon</th>
<th>ISBN</th>
</thead>
<tbody id="booksTableBody">
</tbody>
</table>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="text-muted">2016 © All rights reserved - Awesome Bookstore Inc.</p>
</div>
</footer>
<script src="lib/js/jquery-3.1.1.js"></script>
<script src="lib/js/bootstrap.js"></script>
<script src="js/sdk.js"></script>
<script src="js/books.page.js"></script>
</body>
</html>