-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookChapterSelect.html
More file actions
60 lines (57 loc) · 2.29 KB
/
bookChapterSelect.html
File metadata and controls
60 lines (57 loc) · 2.29 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
58
59
<!DOCTYPE html>
<html>
<title> Settings </title>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<link rel="stylesheet" href="css\slider.css">
<link rel="stylesheet" href="css\style.css">
<style type="text/css">
.not-button{
padding: 0;
border: none;
background: none;
}
</style>
</head>
<body>
<div class="dropdown">
<button class="btn dropdown-toggle" type="button" data-toggle="dropdown">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Hamburger_icon.svg/220px-Hamburger_icon.svg.png" width= '15 px'>
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="login.html">Login</a></li>
<li><a href="settings.html">Settings</a></li>
<li><a href="index.html">Main</a></li>
</ul>
</div>
<!--rest of body-->
<div class="container-fluid" id="BookOfMormon">
<!--Title-->
<div class="row text-center">
<h1>Book Navigation</h1>
</div>
<!--sections-->
<!--Book-->
<div class="row">
<div class= "col-xs-6 col-sm-6 col-md-6 col-lg-6">
<div class= "col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center"><h2>Book</h2></div>
<br><br><br>
<button v-for="book in books" class= "not-button col-sm-6 col-md-6 col-lg-6 text-center" v-on:click="Active_Chapter = book" >{{ book }}
</button>
</div>
<div class= "col-xs-6 col-sm-6 col-md-6 col-lg-6">
<div class= " col-xs-12 col-sm-12 col-md-12 col-lg-12 text-center"><h2>Chapter</h2></div>
<br><br><br>
<div v-for='chapter in BOM[Active_Chapter]' class= "not-button col-sm-3 col-md-3 col-lg-3 text-center"> {{chapter}}</div>
</div>
</div>
</div>
<script src="js/chapters.js" ></script>
<script src="js/slider.js" ></script>
</body>
</html>