Pagination
The Bootstrap pagination
component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
bs_pagination(*args, &block)
bs_pagination(*args, &block)
Returns a bootstrap pagination containing list of items or content specified by a block. Also the pagination is customizable with the following options.
Optional options
:items
- Expects an array of hashes. Possible keys are: type, path, text and activetype: can be
:transition
or:link
. By default it's set as:transition
active: adding active class to page-item if set
true
:size
- There are 3 different sizes. small, medium and large. By default the size is set as medium. Pass:sm
as argument for small size and:lg
for large size:aria_label
- Expects a String for attributearia-label
Html attributes - all w3c confirm html attributes for div's can be set via options and will be added to the surrounding pagination div.
Examples
Example 1: Basic page navigation
returns
Example 2: Using Size option
returns
Last updated