-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path404.html
More file actions
37 lines (34 loc) · 1.04 KB
/
404.html
File metadata and controls
37 lines (34 loc) · 1.04 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
---
permalink: /404.html
layout: default
---
<main role="main" aria-labelledby="page-title">
<section class="not-found" style="text-align:center; max-width: 44rem; margin: 2rem auto;">
<h1 id="page-title">404 — Page not found</h1>
<p>
Sorry, the page you are looking for doesn’t exist or may have moved.
</p>
<nav aria-label="Helpful links" style="margin-top: 1.5rem;">
<p>
<a href="/">Return home</a>
·
<a href="/tags">Browse tags</a>
·
<a href="/sitemap.xml" rel="sitemap">Sitemap</a>
</p>
</nav>
<details>
<summary>Technical details</summary>
<p>
You requested URL: <code>{{ page.url | default: request.path }}</code>
</p>
</details>
</section>
<script>
// Enhance the technical details with current path if available (non-critical)
(function(){
var code = document.querySelector('details code');
if (code && window && window.location) { code.textContent = window.location.pathname; }
})();
</script>
</main>