docspell/website/site/templates/404.html
Eike Kettner 72569287ba Add fathom script
And fix output dir for elm compile
2020-09-07 23:59:05 +02:00

58 lines
1.9 KiB
HTML

<!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">
</head>
<body>
<section class="hero is-info is-small">
<div class="hero-head">
{% include "navbar.html" %}
</div>
<div class="hero-body">
<h1 class="title">
Not Found
</h1>
</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>?
</h2>
</div>
</div>
</section>
{% include "footer.html" %}
</body>
<!-- Fathom - simple website analytics - https://github.com/usefathom/fathom -->
<script>
(function(f, a, t, h, o, m){
a[h]=a[h]||function(){
(a[h].q=a[h].q||[]).push(arguments)
};
o=f.createElement('script'),
m=f.getElementsByTagName('script')[0];
o.async=1; o.src=t; o.id='fathom-script';
m.parentNode.insertBefore(o,m)
})(document, window, '//webstats.daheim.site/tracker.js', 'fathom');
fathom('set', 'siteId', 'OGJDF');
fathom('trackPageview');
</script>
<!-- / Fathom -->
</html>