Hello everyone. I’m making my first kirby blog, and wanted to include an image grid that could be put anywhere in the post, to that effect:
so that it can take several images of similar ratio (6:4 here) and assign them widths ; 66% for large, 50% for medium and 33% for small – so that several combinations are possible
by far, I’m getting this by writing something like this into the .txt (that is the code for the grid pictured above)
`
(image: 1.jpg)
(image: gadget.jpg)
(image: header.jpg)
`
`
(image: future.jpg)
(image: camera3.jpg)
`
That may not look like a whole lot of tags, but the blog will be edited by others, so that will be too much, it also just looks quite clunky.
I would like to be able to achieve the same effect with markdown, so that It takes
something along the lines of
(gallery-row: img1.jpg imgclass:large | img2.jpg img3.jpg imgclass:large)
and outputs a row of grid
I tried other things, like the kirby-collage but it wasn’t quite right. I will be grateful for any suggestions on how to make it happen