I want to use Jekyll & Bootstrap 3 to present my blog posts in a listing that looks like this:
I have this in place on a jekyll project displaying posts in a Bootstrap grid, and it works great:
{% for product in site.pages %} {% if product.sub-category == 'sample-category' %} {{ product.title }} {{ product.part_number }} {% endif %} {% endfor %}