Files
davideisinger.com/themes/v2/layouts/journal/single.html
2023-06-01 12:00:53 -04:00

22 lines
340 B
HTML

{{ define "main" }}
<hr>
<h2>{{ .Title }}</h2>
<h3>
Posted {{ .Date | time.Format "2006-01-02" }}
{{ if .Params.tags }}
under
{{ range .Params.tags }}
<a href="/tags/{{ . | urlize }}">#{{ . }}</a>
{{ end }}
{{ end }}
</h3>
{{ .Content }}
{{- partial "references.html" . -}}
{{ end }}