Welcome to mirror list, hosted at ThFree Co, Russian Federation.

date-and-tags.html « partials « layouts - github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 687e76737d96083c270121c9d252240d6c87ab52 (plain)
1
2
3
4
5
6
7
8
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
{{ .Date.Format $dateFormat }}
{{ with .Params.tags }}
<br>
{{ range . }}
<a class="btn btn-sm btn-outline-secondary" href="{{ "/tags/" | absURL }}{{ . | urlize }}">#{{ . }}</a>
{{ end }}
{{ end }}