Add 404 page

This commit is contained in:
Thomas Schwery 2019-02-24 19:57:37 +01:00
parent 6f3c932891
commit da1faa97ea

12
site/layouts/404.html Normal file
View file

@ -0,0 +1,12 @@
{{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
{{ define "main" }}
{{ $baseURL := .Site.BaseURL }}
<article class="center cf pv5 measure-wide-l">
<h1>
Cette page n'existe pas.
</h1>
<h2>
<a href="{{ $baseURL }}">Retourner à l'accueil</a>
</h2>
</article>
{{ end }}