forked from hpcleuven/VscDocumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
35 lines (30 loc) · 1.09 KB
/
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
<!-- Template for custom 404 error landing page -->
<!-- author: Alex Domingo (Vrije Universiteit Brussel) -->
{%- extends "layout.html" %}
{% block body %}
<h1><i class="fas fa-exclamation-triangle"></i> Page not found</h1>
<p>The requested page does not exist. Please check the site map below or use the search tool in the left sidebar.</p>
<nav id="notfound-nav" aria-label="{{ _('Main navigation') }}">
<div class="notfound-map">
<h2><i class="fas fa-map"></i> Site Map</h2>
{{ generate_toctree_html(
"raw",
startdepth=0,
maxdepth=3,
collapse=False,
includehidden=True,
titles_only=True
) }}
</div>
</nav>
<script type="text/javascript">
function linktoplogo() {
// fix link in top logo, the notfound.extension does not cover it
// because it is specific of the pydata theme
var toplogo = document.getElementById("navbar-start");
var toplink = toplogo.getElementsByTagName("A")[0];
toplink.href = '/';
}
document.addEventListener("DOMContentLoaded", linktoplogo);
</script>
{% endblock %}