A module to provide a views style plugin for bootstrap grids.
Bootstrap is a CSS framework created by the good folks at Twitter, to speed up layout development.
The regular views grid style plugin uses tables which are not ideal in terms of semantic HTML, and not really doing things in a 'bootstrap' way.
This module (via the views plugin) provides grid-based markup in a bootstrap friendly way - wrapping each row of items with a div.row container.
There are options to configure wrapper elements that allow you to control the display of the view. These elements can wrap:
Individual items. Useful when being used for field based views, or if you don't want to theme your view modes for bootstrap compatibility;
The entire display. This allows you to set a wrapper element with an overall width for the display. For example <div class="span8">...</div>.
I use this module actively in projects, but tend to use display suite to control the markup for individual items in the display, using the ds classes to apply spanN classes to each item. I would also tend to theme the output of the block or region to control the width of the entire display.