shitty-ssg/resources/ewnl/template/post.gohtml

15 lines
256 B
Plaintext
Raw Normal View History

2020-12-04 12:50:20 +01:00
<!DOCTYPE html>
<html>
{{- template "head" . -}}
<body>
{{- template "menu" -}}
<main>
<article>
<h1>{{ .Title }}</h1>
<time datetime="{{ .DateShort }}">{{ .DateLong }}</time>
{{ .Content }}
</article>
</main>
</body>
</html>