mirror of
				https://github.com/phpbb/phpbb.git
				synced 2025-10-26 21:21:32 +01:00 
			
		
		
		
	No clickable "jump to" at the moment, as we can not get the route url by the route name in js yet. Need to find another solution later. PHPBB3-12090
		
			
				
	
	
		
			19 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 					<!-- IF BASE_URL -->
 | |
| 					<a href="#" class="pagination-trigger" title="{L_JUMP_TO_PAGE}" data-lang-jump-page="{L_JUMP_PAGE|e('html_attr')}{L_COLON}" data-on-page="{CURRENT_PAGE}" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-base-is-route="{BASE_IS_ROUTE}" data-start-name="{START_NAME}">{PAGE_NUMBER}</a> •
 | |
| 					<!-- ELSE -->
 | |
| 					{PAGE_NUMBER} •
 | |
| 					<!-- ENDIF -->
 | |
| 					<ul>
 | |
| 					<!-- BEGIN pagination -->
 | |
| 						<!-- IF pagination.S_IS_PREV -->
 | |
| 						<!-- ELSEIF pagination.S_IS_CURRENT -->
 | |
| 						<li class="active"><span>{pagination.PAGE_NUMBER}</span></li>
 | |
| 						<!-- ELSEIF pagination.S_IS_ELLIPSIS -->
 | |
| 						<li class="ellipsis"><span>{L_ELLIPSIS}</span></li>
 | |
| 						<!-- ELSEIF pagination.S_IS_NEXT -->
 | |
| 						<!-- ELSE -->
 | |
| 						<li><a href="{pagination.PAGE_URL}">{pagination.PAGE_NUMBER}</a></li>
 | |
| 						<!-- ENDIF -->
 | |
| 					<!-- END pagination -->
 | |
| 					</ul>
 |