12 lines
		
	
	
		
			537 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			537 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% if DEFAULT_PAGINATION %}
 | 
						|
<div class="paginator" style="display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 15px;">
 | 
						|
    {% if articles_page.has_previous() %}
 | 
						|
    <a href="{{ SITEURL }}/{{ articles_previous_page.url }}">«</a>
 | 
						|
    {% endif %}
 | 
						|
    <div style="margin-bottom: 20px;">Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}</div>
 | 
						|
    {% if articles_page.has_next() %}
 | 
						|
    <a href="{{ SITEURL }}/{{ articles_next_page.url }}">»</a>
 | 
						|
    {% endif %}
 | 
						|
</div>
 | 
						|
{% endif %}
 |