-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
88 lines (73 loc) · 3.17 KB
/
archive.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Name -->
<title>Dread Hunters - Archive</title>
<!-- References -->
<script src="js/data_manager.js"></script>
<script src="js/sessions.js"></script>
<script src="js/archive.js"></script>
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet"/>
<link href="css/General.css" rel="stylesheet" />
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<template id="groupTemplate">
<div class="p-2 w-50">
<h5 id="groupName" class="text-center">Group</h5>
<div id="characterList" class="list-group">
<!-- Buttons are dynamically added here -->
</div>
</div>
</template>
<!-- Header -->
<div class="container-fluid border border-bottom-0">
<nav class="navbar navbar-expand-sm">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Calendar</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Archive</a>
</li>
<li class="nav-item">
<a class="nav-link" href="characters.html">Characters</a>
</li>
<li class="nav-item">
<a class="nav-link" href="locations.html">Locations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="fears.html">Fears</a>
</li>
</ul>
</nav>
</div>
<!-- Content -->
<div class="container-fluid border px-3 p-5">
<div class="container">
<h1>05/31/2023</h1>
<p class="m-0">Found teenagers loitering around a Well in Allapon, and after Galahad terrorized them we learned they were part of a rebellion. The kids were going to commit an act to show the politicians they were serious, which we decided to not partake but to also not stop them. This resulted in one of the politicians houses being set on fire.</p>
<h3 class="mt-3">Location</h3>
<p class="m-0"><b>Blackwood Ruins</b>: Some information we learned that I forgot</p>
<p class="m-0"><b>Allapon</b>: Some information we learned that I forgot</p>
<h3 class="mt-3">Encounter</h3>
<p class="m-0"><b>The Fool</b>: Battled The Fool, resulting in the death of Violetta.</p>
<h1 class="mt-5">05/23/2023</h1>
<p class="m-0">Kidnapped and interrogated a member of the Flametouched group. Decided to not kill the person and let him go.</p>
<h4 class="mt-3">Character</h4>
<p class="m-0"><b>Bellamy Briarstone</b>: The Briarstones are the leaders of the Flametouched Group</p>
</div>
</div>
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</body>
</html>