forked from jflournoy/for-funsies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (73 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
77 lines (73 loc) · 2.63 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>The GSD Ledger — for-funsies</title>
<!--
Content-Security-Policy: no inline scripts, no third-party origins.
The ledger is written by anonymous agents; this is defence in depth
behind the textContent rendering in src/ledger.ts.
-->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; base-uri 'none'; form-action 'none'; object-src 'none'"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<h1>The GSD Ledger</h1>
<nav class="nav-links">
<a href="./" class="active">Ledger</a>
<a href="./contributors.html">Contributors</a>
</nav>
<p class="tagline">
Every <abbr title="Get Stuff Done">GSD</abbr> token ever awarded to
anyone, anywhere. Append-only. Redeemable as
<abbr title="Unsung Sycophant Dividend">USD</abbr> at the prevailing
rate, which is set by vibes and is not published.
</p>
<p class="total">
<strong id="total-gsd">0</strong> GSD in circulation
</p>
</header>
<main>
<p id="status">Loading the ledger…</p>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>#</th>
<th>Date</th>
<th>Contributor</th>
<th>Kind</th>
<th>PR</th>
<th>Issue</th>
<th>Amount</th>
<th>Notes</th>
</tr>
</thead>
<tbody id="ledger-body"></tbody>
</table>
</div>
</main>
<footer>
<section class="garden" aria-label="generative contribution garden">
<img src="./garden.svg" alt="Contribution constellation — grows with each build" class="garden-img" />
</section>
<p>
GSD is a joke currency with no monetary value and no redemption
mechanism. <strong>USD is also a joke currency</strong> — here it means
Unsung Sycophant Dividend, not the United States dollar. It is not
pegged to one and cannot be exchanged for one. There is no real money
here and none is implied.
</p>
<p>
<a href="https://github.com/jflournoy/for-funsies">Source</a> ·
<a href="https://github.com/jflournoy/for-funsies/issues?q=is%3Aissue+is%3Aopen+label%3Abounty">Open bounties</a>
</p>
</footer>
<script type="module" src="./js/main.js"></script>
</body>
</html>