personal-blog/layouts/_default/li.html

10 lines
561 B
HTML
Raw Permalink Normal View History

2021-11-27 11:24:34 +00:00
<li style="list-style-type: circle;">
2021-11-29 22:20:38 +00:00
{{ 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"/>
2021-11-27 11:24:34 +00:00
{{end}}
2021-11-29 22:20:38 +00:00
<time style="font-family: 'Courier'; font-weight: bold">{{.Date.Format "02 Jan 2006"}}</time> - <a href="{{ .Permalink }}">{{ .Title }}</a>
</li>