-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·37 lines (30 loc) · 988 Bytes
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{ $asset_base := .Site.BaseURL }}
{{ if ne (getenv "HUGO_ASSET_BASEURL") "" }}
{{ $asset_base = (getenv "HUGO_ASSET_BASEURL") }}
{{ end }}
<!DOCTYPE html>
<html>
{{ partial "head.html" . }}
<body>
{{ partial "navbar.html" . }}
<div class="wrapper">
<h2 class="is-stack-40">404: Page Not Found</h2>
<div class="is-row is-stack-40">
<div class="is-col is-50 story bigger">
<p class="is-big">
Fie! There is no page here at the address you requested.
Sorry about that. Perhaps try a search to find what you are looking
for?
</p>
{{ partial "searchform.html" . }}
</div>
<div class="is-col is-50">
<img src="{{ $asset_base }}assets/img/icarus.jpg" style="background:#ffffff00;">
<em><p class="is-small is-text-center">
Icarus, By Hendrik Goltzius (Holland, Mülbracht, 1558-1617) - <a href="https://collections.lacma.org/node/171116">lacma.org</a></p></em>
</div>
</div>
</div>
{{ partial "footer.html" . }}
</body>
</html>