PaperModX/layouts/shortcodes/image-size-control.html

8 lines
251 B
HTML
Raw Normal View History

2022-05-05 09:49:21 +01:00
<div class="image-size-control" style="
{{- with (.Get "width") }}max-width: {{ . }};{{ end -}}
2022-09-09 17:50:11 +01:00
{{- with (.Get "fixedWidth") }}width: {{ . }};{{ end -}}
{{- with (.Get "height") }}height: {{ . }};{{ end -}}
2022-05-05 09:49:21 +01:00
">
{{ .Page.RenderString .Inner }}
2022-05-05 09:49:21 +01:00
</div>