-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path404.html
More file actions
24 lines (20 loc) · 920 Bytes
/
404.html
File metadata and controls
24 lines (20 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "main.html" %}
{% block content %}
<div class="md-content" data-md-component="content">
<article class="md-content__inner md-typeset">
<h1>404 / not found</h1>
<p>That page does not exist, or has moved.</p>
<h2>Quick links</h2>
<ul>
<li><a href="{{ config.site_url }}">home</a></li>
<li><a href="{{ config.site_url }}getting-started/">getting started</a></li>
<li><a href="{{ config.site_url }}cli/">cli reference</a></li>
<li><a href="{{ config.site_url }}library/">go library</a></li>
<li><a href="{{ config.site_url }}api/">api reference</a></li>
<li><a href="{{ config.site_url }}troubleshooting/">troubleshooting</a></li>
</ul>
<p>Or use the search box above to find what you are looking for.</p>
<p><a href="https://github.com/txn2/txeh" class="md-button md-button--primary">view on github</a></p>
</article>
</div>
{% endblock %}