hugo-theme-terminal/layouts/404.html

11 lines
337 B
HTML
Raw Permalink Normal View History

2019-06-09 09:52:52 +00:00
{{ define "main" }}
2020-05-28 22:07:58 +00:00
<div class="post">
<h1 class="post-title">404 — {{ $.Site.Params.missingContentMessage | default "Page not found..." }}</h1>
2019-06-09 09:52:52 +00:00
2020-05-28 22:07:58 +00:00
<div class="post-content">
<a href="{{ "/" | absURL }}">{{ $.Site.Params.missingBackButtonLabel | default "Back to home page" }}&nbsp;</a>
</div>
2019-06-09 09:52:52 +00:00
2020-05-28 22:07:58 +00:00
</div>
2019-06-09 09:52:52 +00:00
{{ end }}