Files
website/layouts/blog/single.html
2020-07-15 23:03:36 +01:00

12 lines
418 B
HTML

{{ define "main" }}
<article>
<h1 style="padding-top: 1em;">{{ .Title }}</h1>
<p style="padding-bottom: 1em;">Tags:
{{ range (.GetTerms "categories") }}
<a href="{{ .Permalink }}" style="background: #202226; border-radius: 0.3em; padding: 0.4em; margin: 0.1em">{{ .LinkTitle }}</a>
{{ end }}</p>
{{.Content}}
<small>Published on {{ .Date.Format "2006-01-02" }}</small>
</article>
{{ end }}