-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en" manifest="appcache.manifest">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<title>Bible Reading Tracker</title>
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link href="https://fonts.googleapis.com/css?family=Alegreya" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="app" class="container">
<h1>Bible Reading Plan</h1>
<div class="percentageRead">{{percentageRead}}</div>
<div class="section" v-for="(section, sectionTitle) in bible">
<h2>{{sectionTitle}}</h2>
<div class="row" v-for="(books, bookTitle) in section">
<h3>{{bookTitle}}</h3>
<div class="chapters" v-for="(chapter, book) in books">
<div :data-book="bookTitle | lowercase | removespace" :data-chapter="chapter" class="chapter" @click="markRead">{{chapter}}</div>
</div>
<div class="clear"></div>
</div>
</div>
</div>
<div class="copyright">Made with <b><3</b> by <a href="http://hoshor.me" target="_blank">Ryan Hoshor</a>.</div>
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.7.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/5.7.0/firebase-database.js"></script>
<script src="js/app.js"></script>
</body>
</html>