1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-06-09 13:25:07 +02:00
hugo-theme-bootstrap4-blog/layouts/404.html
Alan Orth 58f0b48a72
layouts/404.html: Add minimal not found page
You still need to instruct your web server to use this. See the Hugo
documentation for more information: https://gohugo.io/templates/404/

Closes #72
2018-01-14 05:49:55 +02:00

13 lines
274 B
HTML

{{ define "main"}}
<article class="blog-post">
<header>
<h2 class="blog-post-title">Page Not Found</h2>
</header>
<p>Page not found. Go back <a href="{{ "/" | relURL }}">home</a>.</p>
</article> <!-- /.blog-post -->
{{ end }}
{{- /* vim: set ts=2 sw=2 et: */}}