I\'m trying to learn how to use Jekyll along with Bootstrap; while studying them, I decided that I\'d like to have an image carousel on my homepage.
Since I\'m real
The Jekyll:DirectoryTag plugin from SillyLogger
This tag lets you iterate over files at a particular path. The directory tag yields a file object and a forloop object. If files conform to the standard Jekyll format, YYYY-MM-DD-file-title, then those attributes will be populated on that file object.
For example with images
{% directory path: images/vacation exclude: private %}
-
{% enddirectory %}