personal-blog/layouts/podcast/li.html

15 lines
427 B
HTML
Raw Normal View History

2021-12-02 18:44:48 +00:00
<div class="row">
<div class="micro-block">
{{ if isset .Params "image" }}
2022-01-03 12:21:24 +00:00
<img src="{{ .Site.Params.podcastCdnURL }}{{.Params.image}}" width="120px" height="60px" style="vertical-align: middle; padding: 1px"/>
2021-12-02 18:44:48 +00:00
{{end}}
</div>
<div class="small-block">
{{ .Date.Format "02 Jan 2006"}}
</div>
<div>
<a href="{{ .Permalink }}"><b>{{ .Title }}</b></a>
</div>
</div>