blog/themes/shockrah.xyz/layouts/partials/metadata.html
shockrah dea636c3ae + Adding proper index page building
+ Favicon to head section of pages
* Fixed date formatting in multiple places
+ Skeleton for posts which I don't think is being used but I could be wrong
2021-08-16 16:12:14 -07:00

11 lines
409 B
HTML

{{ $dateTime := .PublishDate.Format "2017-01-01" }}
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
{{ with .Params.tags }}
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}
<a class="btn btn-sm btn-outline-dark tag-btn" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}