mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 19:00:34 -05:00
Update 404 page.
This commit is contained in:
parent
b62625338b
commit
61481d7393
2 changed files with 17 additions and 11 deletions
|
@ -1,8 +1,14 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
{{ define "main"}}
|
<html>
|
||||||
<div>
|
{{ partial "head.html" . }}
|
||||||
<h1>404 page not found.</h1>
|
<body>
|
||||||
<p><a href="/">Go Home</p>
|
{{ partial "header.html" . }}
|
||||||
</div>
|
<div class="main">
|
||||||
{{ end }}
|
<div>
|
||||||
|
<h1>404 page not found.</h1>
|
||||||
|
<p><a href="/">Go Home</a></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
{{- partial "head.html" . -}}
|
{{ partial "head.html" . }}
|
||||||
<body>
|
<body>
|
||||||
{{- partial "header.html" . -}}
|
{{ partial "header.html" . }}
|
||||||
<div class="main">
|
<div class="main">
|
||||||
{{- block "main" . }}{{- end }}
|
{{ block "main" . }}{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{- partial "footer.html" . -}}
|
{{ partial "footer.html" . }}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue