website/layouts/partials/post-end.html
2022-10-08 14:30:00 +05:30

22 lines
619 B
HTML

{{- /* Continued from post-start.html */ -}}
<a href="{{ .Permalink }}">
Published on <time datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">
{{ .Date.Format "02 January, 2006" }}
</time>
{{ if .Lastmod | and (.Lastmod.After .Date) }}
, edited <time datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z" }}">
{{ .Lastmod.Format "02 January, 2006" }}
</time>
{{ end }}
</a>
<ul>
{{ range $tag := .Param "tags" }}
<li>
<a href="/tags/{{ $tag }}">
#<span class="p-category">{{ $tag }}</span>
</a>
</li>
{{ end }}
</ul>
</div>