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.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			654 B
		
	
	
	
		
			PHTML
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			654 B
		
	
	
	
		
			PHTML
		
	
@if ($paginator->hasPages())
 | 
						|
    <ul class="pagination">
 | 
						|
        {{-- Previous Page Link --}}
 | 
						|
        @if ($paginator->onFirstPage())
 | 
						|
            <li class="disabled"><span>@lang('pagination.previous')</span></li>
 | 
						|
        @else
 | 
						|
            <li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a></li>
 | 
						|
        @endif
 | 
						|
 | 
						|
        {{-- Next Page Link --}}
 | 
						|
        @if ($paginator->hasMorePages())
 | 
						|
            <li><a href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a></li>
 | 
						|
        @else
 | 
						|
            <li class="disabled"><span>@lang('pagination.next')</span></li>
 | 
						|
        @endif
 | 
						|
    </ul>
 | 
						|
@endif
 |