forked from Bunteshaus/bunteshaus.de
8 lines
321 B
HTML
8 lines
321 B
HTML
{{ $nr := index .Params 0 }}
|
|
{{ $alt := "sry_no_desc" }}
|
|
{{ if index .Params 1}}{{ $alt = index .Params 1 }}{{ end }}
|
|
{{- $pic := index ($.Page.Resources.ByType "image") $nr -}}
|
|
<div class="picture_outer borderrad25">
|
|
<img src="{{- $pic.Permalink -}}" alt="{{ $alt }}" class="picture_small_center borderrad25" />
|
|
</div>
|