I’m trying to create a portfolio website with Jekyll. The project pages have all a list of images. These images are contained in a li which contain a text, a col and the image itself. How could I display them just by writing the link / text / col number in the project.md?
---
# YAML front matter
images:
- path: /assets/images/path-to-image-1.jpg
column: 1
text: Some text 1
- path: /assets/images/path-to-image-2.jpg
column: 2
text: Some text 2
- path: /assets/images/path-to-image-3.jpg
column: 3
text: Some text 3
---
Your page's content goes here
I have another question: I’m trying to order the list of projects depending on a definite order. In the collections tutorial it says to simply write the order in the config.yml. I did it like this: