-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy path404.html
39 lines (29 loc) · 946 Bytes
/
404.html
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
<!--
Practicalli Custom 404 Page
-->
{% extends "main.html" %}
<!-- Content -->
{% block content %}
<h1>This is not the page you are looking for</h1>
<h3>
Sorry we have arrived at a page that does not exist...
</h3>
<p>
Practicalli website are published using Material for MkDocs
</p>
<p>
Use the Search bar at the top of the page or left navigation to find the relevant content.
</p>
<p>
<a href="https://practical.li/clojure">
<img src="https://raw.githubusercontent.com/practicalli/graphic-design/live/book-covers/practicalli-clojure-book-banner-dark.png#only-dark"
alt="Practicalli Clojure book cover">
</a>
</p>
<p>
<a href="https://practical.li/clojure">
<img src="https://raw.githubusercontent.com/practicalli/graphic-design/live/book-covers/practicalli-clojure-book-banner-light.png#only-light"
alt="Practicalli Clojure book cover">
</a>
</p>
{% endblock %}