10 lines
280 B
HTML
10 lines
280 B
HTML
{{ define "main" }}
|
|
<a href="/"><- return to index</a>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ if .Date }}
|
|
<time datetime="{{ .Date }}">{{ .Date.Format "January 2, 2006" }}</time>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
|
|
{{ end }}
|