Created
December 14, 2011 12:27
-
-
Save kirs/1476388 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
.pagination | |
ul | |
- if(currentPage > 1) | |
li.prev | |
a(href="#")= "← Назад" | |
- else | |
li.prev.disabled | |
a(href="#")= "← Назад" | |
each page in pages | |
li | |
a(href="#")= page | |
- if(currentPage < pagesNum) | |
li.next | |
a(href="#")= "Вперед →" | |
- else | |
li.next.disabled | |
a(href="#") | |
= "Вперед →" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment