personal-blog/layouts/reading/li.html

21 lines
697 B
HTML
Raw Permalink Normal View History

<div class="row">
<div class="micro-block">
{{ if isset .Params "image" }}
2022-01-03 12:21:24 +00:00
<img src="{{.Site.Params.blogCdnUrl}}{{.Params.image}}" width="120px" height="60px" style="vertical-align: middle; padding: 1px"/>
2022-01-03 14:55:21 +00:00
{{ else }}
<img src="https://gmgauthier.us-east-1.linodeobjects.com/blog/img/blue-gray-code.jpg"
width="120px" height="60px" style="vertical-align: middle; padding: 1px"/>
{{end}}
</div>
<div class="big-block">
<a href="{{ .Permalink }}"><b>{{ .Title }}</b></a>
</div>
<div class="small-block">
{{ .Params.author }}
</div>
<div class="small-block">
{{ .Params.era }}
</div>
</div>