forked from johnnymatthews/friendsum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.11 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
<!doctype HTML>
<html lang="en">
<head>
<title>Friendsum: Yet Another Lorem Ipsum Generator</title>
<meta charset=utf-8>
<meta name="description" content="Yet another Lorem Ipsum generator. Like we really needed another one...">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link href="css/bare.min.css" rel="stylesheet">
</head>
<body>
<nav>
<label>
<input type="checkbox">
<header>
<a href="https://www.mohnjatthews.com">Back to mohnjatthews</a>
</header>
<ul>
<li><a href="https://github.com/mohnjatthews/friendsum">Github</a></li>
</ul>
</label>
</nav>
<section mt->
<h1 id="main-header" class="friends-header">Friendsum</h1>
<p>Yet another custom lorem ipsum generator, this time using quotes from the TV show <a href="https://www.youtube.com/watch?v=wxKjuqadoh0">Friends</a>. Well, it was originally just Friends, but then <a href="https://www.youtube.com/watch?v=STp1tesmVXc">Scrubs</a> and <a href="https://www.youtube.com/watch?v=hQdp7rN6vUs">Rick & Morty</a> got added. You can find the <a href="//www.github.com/mohnjatthews/friendsum">code on GitHub here</a>. If you've got any suggestions, let me know!</p>
<grid>
<div col="1/3">
<button primary full onclick="setGlobalQuotes('friends')">Friends</button>
</div>
<div col="1/3">
<button primary full onclick="setGlobalQuotes('scrubs')">Scrubs</button>
</div>
<div col="1/3">
<button primary full onclick="setGlobalQuotes('rick-and-morty')">Rick & Morty</button>
</div>
</grid>
</section>
<section id="output">
<div>
<h2>Output</h2>
<label class="switch" onclick="setAsHtml()">
<input id="viewAsHtml" type="checkbox">
<span class="slider round"></span>
</label>
</div>
<div id="main_holder">
</div>
</section>
<section>
<p class="footer-text" txt="r">Created by <a href="https://mohnjatthews.com">John Matthews</a> | Built with <a href="http://www.barecss.com/">Bare CSS</a>.</p>
</section>
<script src="js/quotes.js"></script>
<script src="js/logic.js"></script>
</body>
</html>