GoBlog/templates/error.gohtml

14 lines
320 B
Plaintext
Raw Normal View History

{{ define "title" }}
2020-10-12 16:47:23 +00:00
<title>{{ with .Data.Title }}{{ . }}{{end}}</title>
{{ end }}
{{ define "main" }}
<main>
2020-10-12 16:47:23 +00:00
{{ with .Data.Title }}<h1>{{ . }}</h1>{{ end }}
2020-12-24 09:09:34 +00:00
{{ with .Data.Message }}<p class="monospace">{{ . }}</p>{{ end }}
</main>
{{ end }}
{{ define "error" }}
{{ template "base" . }}
{{ end }}