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

9 lines
320 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 }}
<img alt="{{ $alt }}" title="{{ $alt }}" class="gallery-img" style="width: 200px; height: 200px; float: right; margin: 10px;" width="{{ .Width }}" height="{{ .Height }}" src="{{ .RelPermalink }}">
{{ end }}