Last active
July 12, 2016 13:45
-
-
Save litzinger/8a0e37d60cf354f9b3c6331ecab32430 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
| {exp:low_events:entries | |
| ... params ... | |
| } | |
| ... stuff ... | |
| {layout:set name="paginate_next" value="abc"} | |
| {paginate} | |
| {pagination_links} | |
| <div class="row"> | |
| <div class="col-md-12 text-center"> | |
| <ul class="pagination"> | |
| {first_page} | |
| <li><a href="{pagination_url}"><i class="fa fa-angle-double-left "></i></a></li> | |
| {/first_page} | |
| {previous_page} | |
| <li><a href="{pagination_url}"><i class="fa fa-angle-left"></i></a></li> | |
| {/previous_page} | |
| {page} | |
| <li class="{if current_page}active{/if}"><a href="{pagination_url}">{pagination_page_number} {if current_page}<span class="sr-only">(current)</span>{/if}</a></li> | |
| {/page} | |
| {next_page} | |
| <li><a href="{pagination_url}"><i class="fa fa-angle-right"></i></a></li> | |
| {/next_page} | |
| {last_page} | |
| <li><a href="{pagination_url}"><i class="fa fa-angle-double-right "></i></a></li> | |
| {/last_page} | |
| </ul> | |
| </div> | |
| </div> | |
| {/pagination_links} | |
| {/paginate} | |
| {/exp:low_events:entries} |
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
| {layout="layouts/main"} | |
| {layout:set name="paginate_next" value="{layout:paginate_next}"} | |
| {embed="events/_list"} |
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
| <link rel="next" href="{layout:paginate_next}" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment