Files
davideisinger.com/themes/v2/layouts/journal/single.html
David Eisinger 6ed1e7afee Fix date bug
2023-03-02 22:49:59 -05:00

20 lines
307 B
HTML

{{ define "main" }}
<hr>
<h2>{{ .Title }}</h2>
<h3>
Posted {{ .Date | time.Format "January _2, 2006" }}
{{ if .Params.tags }}
under
{{ range .Params.tags }}
<a href="/tags/{{ . | urlize }}">#{{ . }}</a>
{{ end }}
{{ end }}
</h3>
{{ .Content }}
{{ end }}