1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-06 05:37:56 +00:00
now-playing/layouts/partials/musics.html

15 lines
610 B
HTML
Raw Normal View History

2019-11-27 02:56:03 +00:00
{{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{ range sort $pages "Date" "desc" }}
<li>
<strong><a href="{{ .Permalink }}">{{ .Title }}</a></strong>
<!-- <time>{{ .Date.Format "2 January 2006" }}</time> -->
{{ $original := resources.Get .Params.cover }}
{{ $cover := $original.Resize "x400" }}
{{ $placeholder := $cover.Resize "x1" }}
<div style="background-image: url(data:{{ $placeholder.MediaType }};base64,{{ $placeholder.Content | base64Encode }});">
<img src="{{ $cover.Permalink }}" width="100" height="100">
</div>
</li>
{{ end }}