LoginSignup
2
2

More than 5 years have passed since last update.

will_paginateでナビゲーションを中央に表示する

Posted at

will_paginateのナビゲーションを中央に表示したい

つまるところ、これを
スクリーンショット 2018-12-28 14.26.05.png

こうしたいのです。
スクリーンショット 2018-12-28 14.25.33.png

実装

ページ送り(Pagination)
https://cccabinet.jpn.org/bootstrap4/components/pagination

こちらを参考にすると、classに"pagination justify-content-center"を指定することで中央揃えにできそうです。

will_paginateのデフォルトではclassに"pagination"が指定されます。
このデフォルト値をオーバーライドして好きなclassを設定することができます。

具体的にはこんな感じです。

<%= will_paginate(@posts, class: "pagination justify-content-center",
                          renderer: WillPaginate::ActionView::Bootstrap4LinkRenderer) %>

"pagination justify-content-end"で右寄せにもできます。
また、Bootstrap3では中央寄せ、右寄せはできないみたいなのでご注意ください。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2