redstrate.com/themes/red/layouts/shortcodes/insert-pic.html

9 lines
264 B
HTML
Raw Normal View History

2023-04-16 13:10:06 -04:00
{{ $name := .Get 0 }}
{{ $alt := .Get 1 }}
{{ $path := printf "pics/%s" $name}}
{{ with resources.Get $path }}
2023-04-17 15:42:54 -04:00
<img alt="{{ $alt }}" title="{{ $alt }}" class="gallery-img page-pic" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
2023-04-16 13:10:06 -04:00
{{ end }}