Skip to content

Instantly share code, notes, and snippets.

@stuartambient
Created November 24, 2017 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartambient/b29dc1be1f7597e1eaaf3a1ad3d1a5e5 to your computer and use it in GitHub Desktop.
Save stuartambient/b29dc1be1f7597e1eaaf3a1ad3d1a5e5 to your computer and use it in GitHub Desktop.
- num_links = @albums.page_count
- link_first_part = %q[<li class="page-item"><a class="page-link" href="#">]
- link_second_part = %q[</a></li>]
<nav aria-label="Page navigation example">
<ul class="pagination">
<li class="page-item"><a class="page-link" href="#">Previous</a></li>
- num_links.times do |i|
- i = 1
p "#{link_first_part}#{i.to_s}#{link_second_part}"
<li class="page-item"><a class="page-link" href="#">Next</a></li>
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment