~linuxgoose/bocpress

ref: 7e5fd8e07d826980527cd444b03fa76ab8e6bcfd bocpress/export_base_hugo/404.html -rw-r--r-- 587 bytes
7e5fd8e0Jordan Robinson fix landing page link 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ define "main" }}
<main>
    <h1>404</h1>
    <h2>Page Not Found</h2>
    <p>The URL you requested does not exist on this blog. Got lost?</p>
    <p><a href="#" onclick="history.back();">← Go back</a> or return to the <a href="{{ .Site.Home.RelPermalink }}">homepage</a>.</p>
</main>

<footer>
    {{- with .Site.GetPage "/" }}
        {{- with .OutputFormats.Get "rss" }}
            <p>
                Subscribe via
                {{ printf `<a href=%q title=%q>RSS</a>.` .Permalink site.Title | safeHTML }}
            </p>
        {{- end }}
    {{- end }}
</footer>
{{ end }}