-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
41 lines (39 loc) · 1.5 KB
/
404.html
File metadata and controls
41 lines (39 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found - Potato</title>
<link rel="stylesheet" href="./site/css/main.css">
</head>
<body>
<nav class="site-nav" aria-label="Main navigation">
<div class="nav-inner">
<a href="./index.html" class="nav-brand">
<span class="potato-icon" aria-hidden="true">🥔</span>potato
</a>
</div>
</nav>
<main>
<div class="page-wrap" style="padding-top: 4rem; text-align: center;">
<div class="card" style="max-width: 42rem; margin: 0 auto; padding: 2rem 2.25rem;">
<h1 style="margin-top: 0;">Page not found</h1>
<p style="color: var(--text-secondary);">
GitHub Pages did not find the route you asked for. Use the entrypoint below to
return to the framework overview or continue into the civic participation site.
</p>
<p style="margin-bottom: 0;">
<a class="btn btn-primary" href="./index.html">Return home</a>
<a class="btn btn-outline" href="./site/index.html" style="margin-left: 0.75rem; background: transparent; color: var(--brown-dark); border-color: var(--brown-pale);">Open manifesto</a>
</p>
</div>
</div>
</main>
<footer class="site-footer">
<p>
Potato - open source governance framework -
<a href="https://github.com/pancakesaregood/potato" target="_blank" rel="noopener">source on GitHub</a>
</p>
</footer>
</body>
</html>