I've got a design for my post page that is made up of text and images, more specifically, galleries. Take a look at the illustration below:

I've got these galleries set up my front matter like so:
--- gallery-1: rows: - images: - { url: '1.jpg'} - images: - { url: '2.jpg'} - { url: '3.jpg'} gallery-2: rows: - images: - { url: '4.jpg'} - { url: '5.jpg'} --- Is there a way to print these galleries to the page on my .md file. I know the code below won't work, but something similar?
This is my markdown [gallery-1] This is more markdown [gallery-2] Is something like this possible with Jekyll?
Any help with this is appreciated. Thanks in advance!