bobatheme/layouts/_default/single.html

13 lines
298 B
HTML
Raw Normal View History

2021-09-25 20:52:01 -05:00
{{ define "main" }}
2021-09-26 19:21:48 -05:00
<h1>{{ .Title | markdownify }}</h1>
{{ if .Date }}
<time datetime="{{ .Date.Format "2006-01-02" }}" pubdate>
{{ .Date.Format "2006-01-02" }}
</time>
{{ end }}
{{ range (.GetTerms "tags") }}
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
{{ end }}
2021-09-25 20:52:01 -05:00
{{ .Content }}
{{ end }}