23 lines
456 B
HTML
23 lines
456 B
HTML
{{ define "blog_post_page" }}
|
|
{{ template "base" . }}
|
|
{{ end }}
|
|
|
|
{{ define "blog_post_content" }}
|
|
<article>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ if .Date }}<p><small>{{ .Date }}</small></p>{{ end }}
|
|
|
|
{{ if .Categories }}
|
|
<p>
|
|
Categories:
|
|
{{ range $i, $cat := .Categories }}
|
|
{{ if $i }}, {{ end }}
|
|
<a href="/blog/category/{{ $cat | slugify }}/">{{ $cat }}</a>
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|
|
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|