docspell/website/site/templates/404.html

52 lines
1.7 KiB
HTML
Raw Normal View History

2020-07-27 20:13:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Not Found</title>
<link rel="stylesheet" href="/styles.css">
2020-09-29 22:17:18 +00:00
{% include "search-head.html" %}
2020-07-27 20:13:22 +00:00
</head>
<body>
<section class="hero is-info is-small">
<div class="hero-head">
{% include "navbar.html" %}
</div>
<div class="hero-body">
2020-09-29 22:17:18 +00:00
<div class="columns is-vcentered">
<div class="column is-8">
<h1 class="title">
Not Found
</h1>
</div>
<div class="column">
<div id="search"></div>
</div>
</div>
2020-07-27 20:13:22 +00:00
</div>
</section>
<section class="section">
<div class="columns is-vcentered">
<div class="column">
<figure class="image is-2by1 feature-image">
<img alt="Not Found Ghost" src="/icons/ghost-40.svg"/>
</figure>
</div>
<div class="column">
<h1 class="title">
Not Found :(
</h1>
<h2 class="subtitle">
<a href="/docs">Documentation</a>?
2020-07-27 20:13:22 +00:00
</h2>
</div>
</div>
</section>
{% include "footer.html" %}
</body>
2020-09-29 22:17:18 +00:00
{% include "search-part.html" %}
{% include "fathom.html" %}
2020-07-27 20:13:22 +00:00
</html>