hugo-scroll/layouts/404.html

17 lines
503 B
HTML
Raw Normal View History

2020-07-07 08:37:57 +00:00
{{ define "main" }}
2020-09-09 16:00:59 +00:00
<main class="content page-template 404" role="main">
2020-07-07 08:37:57 +00:00
<article class="post page">
2020-09-09 16:00:59 +00:00
<header class="post-header">
<a id="blog-logo" href="{{ "/" | relURL }}">
{{ .Site.Title }}
</a>
</header>
<h1 class="post-title">404 - Page Not Found</h1>
<section class="post-content">
Give it another try:
<a href="{{ "/" | relURL }}" alt="Homepage">Back to the homepage</a>.
</section>
2020-07-07 08:37:57 +00:00
</article>
2020-09-09 16:00:59 +00:00
</main>
{{ end }}