diff options
author | William Carroll <wpcarro@gmail.com> | 2019-11-19T18·36-0300 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-11-19T18·36-0300 |
commit | dbde1a1ef9865dfb180c9e42e1cc696dfd19554c (patch) | |
tree | f32056d54e7aa9f52e9ed5376850e524f541254f /layouts/404.html | |
parent | 693a189ffaacebd82646f1d03f0577c555f26cb3 (diff) |
Hugo theme (#1)
Diffstat (limited to 'layouts/404.html')
-rw-r--r-- | layouts/404.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 000000000000..afa69fec743e --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,12 @@ +{{ define "heading"}} +<div> + <a class="text-lg mb-8 inline-block" href="{{ .Site.BaseURL | relLangURL }}">← {{ i18n "back_home" }}</a> + <h1 class="text-4xl font-bold">{{ i18n "not_found_page_title" }}</h1> +</div> +{{ end }} + +{{ define "content" }} +<section class="mb-24"> + <img src="{{ "images/404-background.png" | relURL }}" alt="Page Not Found"> +</section> +{{ end }} |