aboutsummaryrefslogtreecommitdiff
path: root/templates/error.tmpl
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2020-01-14 16:57:16 +0000
committerr <r@freesoftwareextremist.com>2020-01-14 16:57:16 +0000
commit55987a4c1bd7364eba7438e7326a76a9a550b668 (patch)
tree366dd5280f307ece3fc2343be3f24036f577f93b /templates/error.tmpl
parent3c6653a77b8951672ea169d175db154495a981fe (diff)
downloadbloat-55987a4c1bd7364eba7438e7326a76a9a550b668.tar.gz
bloat-55987a4c1bd7364eba7438e7326a76a9a550b668.zip
Refactor renderer and templates
Diffstat (limited to 'templates/error.tmpl')
-rw-r--r--templates/error.tmpl11
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/error.tmpl b/templates/error.tmpl
index 2049665..0d6115a 100644
--- a/templates/error.tmpl
+++ b/templates/error.tmpl
@@ -1,9 +1,12 @@
-{{template "header.tmpl" .HeaderData}}
+{{with .Data}}
+{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
<div class="page-title"> Error </div>
+
<div class="error-text"> {{.Error}} </div>
<div>
-<a href="/timeline/home">Home</a>
-<a href="/signin">Sign In</a>
+ <a href="/timeline/home">Home</a>
+ <a href="/signin">Sign In</a>
</div>
-{{template "footer.tmpl"}}
+{{template "footer.tmpl"}}
+{{end}}