Pagination

Pagination can be implemented by utilizing the existing Join component.

Basic Pagination

Pagination is used to navigate between pages of content. It is typically used in conjunction with a list of items that are paginated.

Preview
Code
= daisy_join do |join|
  - join.with_item do
    = daisy_button(title: "1", css: "btn-primary join-item")
  - join.with_item do
    = daisy_button(title: "2", css: "join-item")
  - join.with_item do
    = daisy_button(title: "...", css: "join-item")
  - join.with_item do
    = daisy_button(title: "9", css: "join-item")
  - join.with_item do
    = daisy_button(title: "10", css: "join-item")
Made with by Profoundry .
Copyright © 2023-2025 Profoundry LLC.
All rights reserved.