indiescrobble/templates/pages/error.tmpl

13 lines
220 B
Cheetah
Raw Normal View History

{{ define "error.tmpl" }}
<!DOCTYPE html>
<html lang="en">
{{ template "partial/head.tmpl" . }}
<body>
{{ template "partial/header.tmpl" . }}
<main>
<h2>Error</h2>
{{ .message }}
</main>
</body>
</html>
{{ end }}