SketchyMaze.com website built using Hugo.
https://www.sketchymaze.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
470 B
13 lines
470 B
<div class="mb-4">
|
|
{{ if .PublishDate }}
|
|
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
|
|
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
|
|
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
|
|
{{ end }}
|
|
{{ with .Params.tags }}
|
|
{{ range . }}
|
|
{{ $href := print (absURL "tags/") (urlize .) }}
|
|
<a class="btn btn-sm btn-outline-dark tag-btn" href="{{ $href }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|