vulpine.house/themes/clean/layouts/_default/single.html

13 lines
387 B
HTML

{{ define "main"}}
<article>
<h1>{{.Title}}</h1>
{{ if .Params.tags }}
<div>
<b>Tags:</b> {{ range .Params.tags }}
<span><a href="{{$.Site.BaseURL}}/tags/{{ . | urlize}}/">{{ . }}</a></span>{{ end }}
</div>
{{ end }}
{{.Content}}
</article>
{{ end }}