Last active
December 26, 2015 11:59
-
-
Save TiuTalk/7147384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- como veio no HTML --> | |
<ul class="pagination"> | |
<li><a href="#" class="inative">anterior</a></li> | |
<li><a href="#" class="active">1</a></li> | |
<li><a href="#">2</a></li> | |
<li><a href="#">3</a></li> | |
<li><a href="#">4</a></li> | |
<li><a href="#">5</a></li> | |
<li><a href="#">próximo</a></li> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- como ficou --> | |
<ul class="pagination"> | |
<li><a href="http://localhost/boo-box.com/blog/">anterior</a></li> | |
<li><a href="http://localhost/boo-box.com/blog/" class="">1</a></li> | |
<li><a href="http://localhost/boo-box.com/blog/page/2/" class="active">2</a></li> | |
<li><a href="#" class="inative">próximo</a></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment