-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (74 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rafiki</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="layout.css">
</head>
<body>
<nav class="d-print-none">
<div>
<a href="">
<img src="rafiki.png" width="44" height="64" alt="simian spirit guide">
<h1>Rafiki</h1>
</a>
<div>printable deck guides<div>
<h4 id="source">
<a href="https://github.com/mcandre/rafiki">source</a>
</h4>
</div>
</nav>
<article>
<div id="deck" class="d-print-none">
<h2>Deck</h2>
<div id="deck_form">
<div>
<textarea id="deck_list" cols="40" rows="14">2 Control Your Temper!
2 Be Our Guest
1 Part of Your World
3 Friends on the Other Side
2 Hakuna Matata
2 HeiHei - Boat Snack
3 Stitch - New Dog
3 Olaf - Friendly Snowman
2 Pascal - Rapunzel's Companion
3 Minnie Mouse - Beloved Princess
2 Dr. Facilier - Charlatan
3 Magic Broom - Bucket Brigade
2 Yzma - Alchemist
2 Maximus - Relentless Pursuer
3 Mickey Mouse - True Friend
2 Maleficent - Sorceress
3 Rafiki - Mysterious Sage
3 The Wardrobe - Belle's Confidant
2 Ariel - On Human Legs
2 Cinderella - Gentle and Kind
1 Hades - Lord of the Underworld
2 Jafar - Wicked Sorcerer
2 Jetsam - Ursula's Spy
1 Mickey Mouse - Wayward Sorcerer
1 Moana - Of Motunui
1 Flotsam - Ursula's Spy
1 Sven - Official Ice Deliverer
1 Dr. Facilier - Agent Provocateur
3 Dinglehopper</textarea>
</div>
<div id="generate_controls">
<button id="generate" class="btn btn-secondary btn-lg">Generate</button>
</div>
</div>
<div id="errors"></div>
</div>
<div id="index">
<h2 class="d-print-none">Index</h2>
<div id="index_list">
<div class="index_placeholder d-print-none"></div>
</div>
</div>
</article>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script type="text/javascript" src="rafiki.js"></script>
</body>
</html>