1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 02:34:28 +00:00
GoBlog/templates/error.gohtml
2020-10-12 18:47:23 +02:00

14 lines
298 B
Plaintext

{{ define "title" }}
<title>{{ with .Data.Title }}{{ . }}{{end}}</title>
{{ end }}
{{ define "main" }}
<main>
{{ with .Data.Title }}<h1>{{ . }}</h1>{{ end }}
{{ with .Data.Message }}{{ md . }}{{ end }}
</main>
{{ end }}
{{ define "error" }}
{{ template "base" . }}
{{ end }}