Files
nairobi/app/views/kaminari/_next_page.html.erb
Javi Martín 11e52dbe98 Remove kaminari_path
The main reason to use it was the `rel` attribute for previous/next
pages not being indexed correctly by certain search engines when using a
relative URL. However, AFAIK that only applied to `<link>` tags, not to
`<a>` tags, and only if a `<base>` tag was defined.

In any case, it looks like the same search engines don't use the `rel`
attribute for previous/next to index pages anymore.
2019-10-20 17:26:14 +02:00

4 lines
119 B
Plaintext

<li class="pagination-next">
<%= link_to t("views.pagination.next"), url, :rel => "next", :remote => remote %>
</li>