-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
105 lines (79 loc) · 3.72 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en" class="custom-scroll">
<head>
<meta charset="UTF-8">
<title>Booktype Edit Screen</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700' rel='stylesheet' type='text/css'>
<link href='css/bootstrap.css' rel='stylesheet' type='text/css' />
<link href='css/bootstrap-custom.css' rel='stylesheet' type='text/css' />
<link href='css/bootstrap-theme.css' rel='stylesheet' type='text/css' />
<link href="css/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<link href='css/booki-new.css' rel='stylesheet' type='text/css' />
<link href='css/aloha.css' rel='stylesheet' type='text/css' />
<link href='css/backo.css' rel='stylesheet' type='text/css' />
<style>
.container a {font-size: 14px;}
</style>
</head>
<body>
<br><br>
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="box white">
<div class="row">
<h2 class="col-xs-10">Booktype views</h2>
<div class="col-xs-2"><img src="logo.png" /></div>
</div>
<div class="row border-bottom">
<h4 class="col-xs-3">Home views</h4>
<ul class="list col-xs-9">
<li><a href="home - logged in.html">Home - user is logged in</a></li>
<li><a href="home - log out.html">Home - user is not logged in</a></li>
<li><a href="sign-in.html">Sing in or register view</a></li>
</ul>
</div>
<div class="row border-bottom">
<h4 class="col-xs-3">Group views</h4>
<ul class="list col-xs-9">
<li><a href="groups.html">All groups</a></li>
<li><a href="group.html">Group page - logged in user is not a member of this group</a></li>
<li><a href="group - my group.html">Group page - logged in user is already a member of this group</a></li>
<li><a href="group-settings.html">Group settings</a></li>
</ul>
</div>
<div class="row border-bottom">
<h4 class="col-xs-3">People views</h4>
<ul class="list col-xs-9">
<li><a href="people.html">All people</a></li>
<li><a href="dashboard - other users profile.html">Other users profile</a></li>
<li><a href="dashboard.html">Logged in current user profile - dashboard</a></li>
<li><a href="dashboard-settings.html">Current user profile - settings</a></li>
</ul>
</div>
<div class="row border-bottom">
<h4 class="col-xs-3">Book views</h4>
<ul class="list col-xs-9">
<li><a href="Books%20overview%20logged%20in.html">Books overview logged in</a></li>
<li><a href="Books%20overview.html">Books overview logged out</a></li>
<li><a href="Book%20info%20page.html">Book info page</a></li>
<li><a href="Draft%20-%20view%20book.html">Draft - view book</a></li>
<li><a href="toc-screen.html">Table of content screen</a></li>
<li><a href="edit-screen.html">Edit screen</a></li>
<li><a href="cover-manager.html">Cover manager</a></li>
<li><a href="media.html">Media - Images and Files</a></li>
</ul>
</div>
<div class="row border-bottom">
<h4 class="col-xs-3">Admin Control Center</h4>
<ul class="list col-xs-9">
<li><a href="Admin%20control%20center%20-%20dashboard.html">Admin control center - dashboard</a></li>
<li><a href="Admin%20control%20center%20-%20settings.html">Admin control center - settings</a></li>
</ul>
</div>
</div>
</div> <!-- End of col-xs-4 -->
</div>
</div> <!-- End of container -->
</body>
</html>