Merge pull request #51 from mochaaP/404-page

Add 404 Page
This commit is contained in:
Radek Kozieł
2020-05-28 23:57:19 +02:00
committed by GitHub
2 changed files with 13 additions and 0 deletions

11
layouts/404.html Normal file
View File

@ -0,0 +1,11 @@
{{ define "main" }}
<div class="post">
<h1 class="post-title">404!</h1>
<div class="post-content">
{{ .Site.Params.missingContentMessage }}<br>
<a href="{{ "/" | absURL }}">{{ .Site.Params.missingBackButtonLabel }}&nbsp;</a>
</div>
</div>
{{ end }}