-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
105 lines (91 loc) · 3.49 KB
/
about.html
File metadata and controls
105 lines (91 loc) · 3.49 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About — 31 Days of WA Data</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=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@300;400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<style>
.about-content {
max-width: 65ch;
margin: 0 auto;
}
.about-content h2 {
font-size: 1.5rem;
font-weight: 400;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--accent);
}
.about-content p {
margin-bottom: 1.5rem;
font-size: 1.125rem;
}
.about-content ul {
margin-bottom: 1.5rem;
padding-left: 1.5rem;
}
.about-content li {
margin-bottom: 0.75rem;
font-size: 1.125rem;
}
.back-link {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
letter-spacing: 0.05em;
color: var(--muted);
text-decoration: none;
display: inline-block;
margin-bottom: 2rem;
transition: color 0.2s;
}
.back-link:hover {
color: var(--accent);
}
.back-link::before {
content: '← ';
}
.disclaimer {
margin-top: 2.5rem;
font-style: italic;
color: var(--muted);
}
</style>
<script defer src="https://umami.padmorrison.com/script.js" data-website-id="1c211c11-4d9f-4266-bdc8-c0ec05d7a8cf"></script>
</head>
<body>
<div class="container">
<header>
<a href="index.html" class="back-link">Back to calendar</a>
<p class="year">January 2026</p>
<h1>About<br><em>31 Days of WA Data</em></h1>
</header>
<div class="about-content">
<h2>Philosophy</h2>
<ul>
<li><strong>One dataset a day.</strong> A new take on Western Australian data every day throughout
January. This advent calendar is in January because December is too busy.</li>
<li><strong>Ethical use.</strong> All data is used within published permissions and properly credited.
Our posts are CC BY 4.0 where possible. We appreciate the work and occasional complexity behind
sharing data openly.</li>
<li><strong>Carefully curated.</strong> Every visualisation should be beautiful, interesting, and
well-crafted. AI-assisted code is welcome—but no slop.</li>
<li><strong>Open collaboration.</strong> Want to contribute? Message the contributors. Crossposting is
encouraged—contributors are welcome to repost and expand on their work on their own blogs etc.</li>
</ul>
<p class="disclaimer">
This is an unofficial community project, not affiliated with or endorsed by data.wa.gov.au,
the original data authors, or their departments. All views and interpretations are our own.
</p>
</div>
<footer>
Perth, Western Australia
</footer>
</div>
</body>
</html>