website/layouts/404.html
2020-06-23 14:34:50 +08:00

13 lines
509 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{ define "main" }}
<section class="section-1">
<img class="img-1" src="/images/404/combined-shape.svg" alt="icon">
<img class="img-2" src="/images/404/fill.svg" alt="background image">
<div class="common-layout">
<img src="/images/404/404.png" alt="404 image">
<p>{{ i18n "We cant find the page that youre looking for :(" }}</p>
<a href="{{ site.Home.RelPermalink }}">
<button>{{ i18n "Go To Home" }}</button>
</a>
</div>
</section>
{{ end }}