8 lines
275 B
HTML
8 lines
275 B
HTML
{{/* Input: Input: dict {"responsive": [RESOURCE, ...]}. Output: srcset string */}}
|
|
|
|
{{ $images := .responsive }}
|
|
{{ $srcset := slice }}
|
|
{{ range $images }}
|
|
{{ $srcset = append (printf "%s %dw" .Permalink .Width) $srcset }}
|
|
{{ end }}
|
|
{{ return (delimit $srcset ",\n") }} |