Pagination
bs_pagination(*args, &block)
bs_pagination(*args, &block)Examples
Example 1: Basic page navigation
bs_pagination aria_label: "Page navigation example", items: [
{ type: :link, path: "#", text: "Previous" },
{ type: :link, path: "#", text: "1", active: true },
{ type: :link, path: "#", text: "2" },
{ type: :link, path: "#", text: "3" },
{ type: :link, path: "#", text: "Next" },
]Example 2: Using Size option
Last updated