valor/layouts/partials/post.html

18 lines
543 B
HTML
Raw Normal View History

<div class="post">
2023-03-06 19:41:36 -05:00
<a href="{{.Permalink}}">
2023-05-11 03:19:28 -04:00
<h2>{{.Title}}</h2>
2023-03-06 19:41:36 -05:00
</a>
2023-05-11 03:19:28 -04:00
<div>
<p>{{.Params.description}}{{if .Date}}<br>Published: <strong>{{.Date | time.Format "Jan 02
2006"}}{{end}}</strong></p>
</div>
{{ if .GetTerms "tags" }}
<div class="post-tags">
{{range .GetTerms "tags" }}
<a href="{{.Permalink}}" class="tag"><svg class='icon'>
<use href="#tag"></use>
</svg><span>{{.LinkTitle}}</span></a>
2023-03-06 19:41:36 -05:00
{{end}}
2023-05-11 03:19:28 -04:00
</div>
{{end}}
</div>