-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
59 lines (58 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TTRPG Guide</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="main">
<h1>
Guide to tabletop RPG systems
<a href="https://github.com/isaaclyman/ttrpg-guide">
<img
class="github-img"
src="/github-mark-white.png"
alt="TTRPG Guide on GitHub"
/>
</a>
</h1>
<p class="small">
Something missing?
<a href="https://github.com/isaaclyman/ttrpg-guide/issues/new/choose"
>File an issue</a
>
or
<a
href="https://github.com/isaaclyman/ttrpg-guide?tab=readme-ov-file#faq"
>see FAQ.</a
>
</p>
<p class="small hidden" id="desktop-info">
This site looks better on a computer.
</p>
<div class="actions">
<input
id="search"
class="search-input"
type="text"
placeholder="Search"
/>
</div>
<div id="rpgtable"></div>
<div class="footer">
Made with ♥ by <a href="https://isaaclyman.com">Isaac Lyman</a>.
Download data as <a id="download-json" href="#">JSON</a>,
<a id="download-html" href="#">HTML</a>, or
<a id="download-csv" href="#">CSV</a>.
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>