2023-10-02 12:08:18 +02:00
|
|
|
{{ define "main" }}
|
2023-11-09 19:51:23 +01:00
|
|
|
{{- $image := resources.Get "images/404.png" }}
|
2023-10-02 12:08:18 +02:00
|
|
|
<main class="container" aria-role="main">
|
|
|
|
<div>
|
|
|
|
<h1 id="title">404 Page not Found</h1>
|
2023-11-09 19:51:23 +01:00
|
|
|
<p>The requested page was not found. Maybe try searching from <a href="{{ .Site.Home.RelPermalink }}">home</a>.</p>
|
|
|
|
<img src="{{ $image.RelPermalink }}">
|
2023-10-02 12:08:18 +02:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ end }}
|