mirror of https://github.com/pixelfed/pixelfed
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			37 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHTML
		
	
		
		
			
		
	
	
			37 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHTML
		
	
| 
								 
											8 years ago
										 
									 | 
							
								@if ($paginator->hasPages())
							 | 
						||
| 
								 | 
							
								    <ul class="pagination">
							 | 
						||
| 
								 | 
							
								        {{-- Previous Page Link --}}
							 | 
						||
| 
								 | 
							
								        @if ($paginator->onFirstPage())
							 | 
						||
| 
								 | 
							
								            <li class="page-item disabled"><span class="page-link">‹</span></li>
							 | 
						||
| 
								 | 
							
								        @else
							 | 
						||
| 
								 | 
							
								            <li class="page-item"><a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">‹</a></li>
							 | 
						||
| 
								 | 
							
								        @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        {{-- Pagination Elements --}}
							 | 
						||
| 
								 | 
							
								        @foreach ($elements as $element)
							 | 
						||
| 
								 | 
							
								            {{-- "Three Dots" Separator --}}
							 | 
						||
| 
								 | 
							
								            @if (is_string($element))
							 | 
						||
| 
								 | 
							
								                <li class="page-item disabled"><span class="page-link">{{ $element }}</span></li>
							 | 
						||
| 
								 | 
							
								            @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            {{-- Array Of Links --}}
							 | 
						||
| 
								 | 
							
								            @if (is_array($element))
							 | 
						||
| 
								 | 
							
								                @foreach ($element as $page => $url)
							 | 
						||
| 
								 | 
							
								                    @if ($page == $paginator->currentPage())
							 | 
						||
| 
								 | 
							
								                        <li class="page-item active"><span class="page-link">{{ $page }}</span></li>
							 | 
						||
| 
								 | 
							
								                    @else
							 | 
						||
| 
								 | 
							
								                        <li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li>
							 | 
						||
| 
								 | 
							
								                    @endif
							 | 
						||
| 
								 | 
							
								                @endforeach
							 | 
						||
| 
								 | 
							
								            @endif
							 | 
						||
| 
								 | 
							
								        @endforeach
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        {{-- Next Page Link --}}
							 | 
						||
| 
								 | 
							
								        @if ($paginator->hasMorePages())
							 | 
						||
| 
								 | 
							
								            <li class="page-item"><a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">›</a></li>
							 | 
						||
| 
								 | 
							
								        @else
							 | 
						||
| 
								 | 
							
								            <li class="page-item disabled"><span class="page-link">›</span></li>
							 | 
						||
| 
								 | 
							
								        @endif
							 | 
						||
| 
								 | 
							
								    </ul>
							 | 
						||
| 
								 | 
							
								@endif
							 |