hugo-theme-stack/layouts/shortcodes/work-list.html
2024-04-29 20:35:49 +08:00

15 lines
395 B
HTML

{{ $file := .Get 0 }}
{{ $num := 4 }}
{{ if .Get 1 }}
{{ $num = .Get 1 }}
{{ end }}
{{ $width := div 90 $num }}
{{$items := getJSON $file }}
<div class="work-list">
{{range $item := $items}}
<a href="{{ $item.url }}">
<img class="work-list-item" src="{{ $item.image }}" loading="lazy" title="{{ $item.title }}" width="{{ $width }}%">
</a>
{{end}}
</div>