15 lines
481 B
HTML
15 lines
481 B
HTML
{{ define "main" }}
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<p>
|
|
{{ if ne .PublishDate.Year 1 }}{{ .PublishDate.Format "2006-01-02" }} - {{ end }}{{ .Description }}
|
|
|
|
{{ if (isset .Params "tags") }}{{ if ge (len .Params.tags) 1 }}<br/>Tag{{ if ge (len .Params.tags) 2 }}s{{ end }}: {{ range .Params.tags }}{{ with $.Site.GetPage (printf "/%s/%s" "tags" .) }}<a href="{{ .Permalink }}">{{ .Title }}</a> {{ end }}{{ end }}{{ end }}{{ end }}
|
|
</p>
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{ end }}
|