9 lines
293 B
HTML
9 lines
293 B
HTML
{{ if .Params.date }}
|
|
<span class="pr-1" title='{{ .Date.Format "January 2 2006" }}'>{{ .Date.Format "2006-01-02" }}</span>
|
|
{{ end }}
|
|
|
|
{{ if .Params.tags }}
|
|
{{ range $i, $e := .Params.tags }}
|
|
<a href="/tags/{{ urlize . }}" class="mr-1">#{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|