forked from mendix/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
29 lines (29 loc) · 1.65 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
<!doctype html>
<html itemscope itemtype="http://schema.org/WebPage" lang="{{ .Site.Language.Lang }}" class="no-js">
<head>
{{ partial "head.html" . }}
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
</head>
<body class="td-{{ .Kind }}">
{{/* NK - deactivation of original navbar
<header>
{{ partial "navbar.html" . }}
</header>
*/}}
<div class="container-fluid td-outer" style="padding: 1rem;">
<main role="main" class="d-flex justify-content-center">
<div class="col-12 mx-auto text-center" style="max-width: 35rem; padding-top: 6rem; ">
<img src="/images/404.png" alt="Not found" width="55%" class="no-border" style="min-width: 350px; margin-bottom:1rem;">
<p class="page-title" style="font-size: 1.5rem; margin-bottom:.5rem">Another Page Washed Away Mysteriously (404)</p>
<p class="body" style="font-size: 1rem;">This page doesn't exist. Try using the search bar at the top of the page to find the documentation that you are looking for.</p>
<a href="{{ "/" | relURL }}" class="btn btn-outline-secondary" style="padding-top: .5rem; padding-bottom: .5rem; padding-left: 1rem; padding-right: 1rem;">Go Back Home</a>
</div>
</main>
<script type="text/javascript">
window.__MX_APP_NAME = 'Docs';
</script>
<script src="https://dock-static.mendix.com/main.js" async></script>
</div>
{{ partial "scripts.html" . }}
</body>
</html>