-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 2.57 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
<!DOCTYPE html>
<html>
<head>
<title>Golden: Home</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Quicksand" rel="stylesheet">
<link rel="stylesheet" href="reset.css"/>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="mobi.css"/>
<script src="responsive.js"></script>
</head>
<body>
<div class="content">
<div class="topnav" id="myTopnav">
<a href="index.html" class="main norm">Golden: Chronicles of the Hastening</a>
<a href="index.html" class="main mobi">Golden</a>
<br>
<a href="index.html" class="active">Home</a>
<a href="comic.html">Comics</a>
<a href="characters.html">Characters</a>
<a href="suggestions.html">Suggestions</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">☰</a>
</div>
<div class="page full">
<div class="welcome">
<img src="image/rainbow_road.jpg"/>
</div>
<div id="joke_getter">
<div class="if_else" v-if="loading">
<div class="box">
<p class="joke">Cracking a Wise One...</p>
</div>
</div>
<div class="if_else" v-else>
<div class="box">
<h1 v-if="phillipsJoke" class="whoFrom">A Joke From Elder Phillips:</h1>
<h1 v-else class="whoFrom">A Joke From Elder Herbie:</h1>
<p class="joke">"{{setup}}"</p>
<p class="joke">"{{punchline}}"</p>
</div>
<br>
<button id="joke_btn" v-on:click="crackAWiseOne">Another Joke!</button>
</div>
</div>
</div>
<div class="spacer"></div>
<footer class="norm">
<ul>
<li><a href="https://www.lds.org/?lang=eng">LDS Church Website</a></li>
<li><a href="https://github.com/hiltonjp/golden">GitHub Repository</a></li>
<li><a href="https://www.facebook.com/chroniclesofthehastening/">Golden: The Facebook Page</a></li>
</ul>
</footer>
<footer class="mobi">
<ul>
<li><a href="https://www.lds.org/?lang=eng">LDS.org</a></li>
<li><a href="https://github.com/hiltonjp/golden">Repo</a></li>
<li><a href="https://www.facebook.com/chroniclesofthehastening/">Facebook</a></li>
</ul>
</footer>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.13/dist/vue.js"></script>
<script src="jokes.js"></script>
</div>
</body>
</html>