sample_rails_tailwind/app/views/kaminari/_page.html.erb

10 lines
278 B
Plaintext
Raw Normal View History

<% if page.current? %>
<button class='join-item btn btn-active'>
<%= content_tag :a, page, data: { remote: remote }, rel: page.rel %>
</button>
<% else %>
<button class="join-item btn">
<%= link_to page, url, remote: remote, rel: page.rel %>
</button>
<% end %>