You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
788 B
HTML

<div class="post">
{{if .Params.image}}
<a href="{{.Permalink}}">
<div class="post-image" style="background-image:url({{.Params.image}})">
</div>
</a>
{{end}}
<section>
<a href="{{.Permalink}}">
<h2>{{.Title}}</h2>
</a>
<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>
{{end}}
</div>
{{end}}
</section>
</div>