Hi,
I have a picture
partial that generates images for mobile, tablet, desktop and so forth.
I would like to use this partial in my page templates or layouts, as well as in markdown files.
The partial accepts a dictonary as so:
{{ partial "helpers/picture.html" (dict "url" "images/chapter-3/hero-bg.svg" "alt" "Shapes Background" "lazy" true) }}
To minimise duplicative code, I noticed I could do the following in shortcodes/partial.html
{{ partial (.Get 0) (.Get 1) }}
However I cannot call the shortcode successfully.
{{< partial "helpers/picture.html" (dict "url" "images/chapter-3/hero-bg.svg" "alt" "Shapes Background" "lazy" true) >}}
Is there an easier way without having two seperate markup files for displaying pictures?