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.
		
		
		
		
		
			
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block main_content %}
 | |
|     
 | |
|     <h1>{{ config.title }}</h1>
 | |
|     <main class="list">
 | |
|         {%- if paginator %}
 | |
|        
 | |
|             {%- set show_pages = paginator.pages -%}
 | |
|         {% else %}
 | |
|        
 | |
|             {% set section = get_section(path="posts/_index.md") %}
 | |
|             {%- set show_pages = section.pages -%}
 | |
|         {% endif -%}
 | |
| 
 | |
|         {{ post_macros::list_posts(pages=show_pages) }}
 | |
|     </main>
 | |
| 
 | |
|     {% if paginator and current_path != "/" %}
 | |
|         <ul class="pagination">
 | |
|             {% if paginator.previous %}
 | |
|                 <span class="page-item page-prev">
 | |
|                     <a href={{ paginator.previous }} class="page-link" aria-label="Previous"><span aria-hidden="true">← Prev</span></a>
 | |
|                 </span>
 | |
|             {% endif %}
 | |
| 
 | |
|             {% if paginator.next %}
 | |
|                 <span class="page-item page-next">
 | |
|                     <a href={{ paginator.next }} class="page-link" aria-label="Next"><span aria-hidden="true">Next →</span></a>
 | |
|                 </span>
 | |
|             {% endif %}
 | |
|         </ul>
 | |
|     {% endif %}
 | |
|     
 | |
| {% endblock main_content %} |