certman/assets/templates/errors/404.gohtml
2018-04-22 16:55:50 +02:00

20 lines
595 B
Plaintext

{{ define "meta" }}
<title>Page not found</title>
{{ end }}
{{ define "content" }}
<section class="hero is-info is-fullheight">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<h1 class="title is-2 is-spaced">Page not found</h1>
<h2 class="subtitle is-4">
You requested a page that could not be fetched by the web server.
</h2>
</div>
</div>
</div>
</div>
</section>
{{ end }}