15 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			419 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "blog/_base.html" %}
 | 
						|
{% from "macros/blog.html" import render_blog_post %}
 | 
						|
{% from "macros/pagination.html" import render_pagination %}
 | 
						|
 | 
						|
{% block main_content %}
 | 
						|
  {% for child in this.pagination.items %}
 | 
						|
    {{ render_blog_post(child, from_index=true) }}
 | 
						|
  {% endfor %}
 | 
						|
 | 
						|
  <div class="center">{{ render_pagination(this.pagination) }}</div>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block endbody %}
 | 
						|
  {{ super() }}
 | 
						|
{% endblock %}
 |