17 lines
510 B
HTML
17 lines
510 B
HTML
{% extends "blog/_base.html" %}
|
|
{% from "macros/blog.html" import render_blog_post %}
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
{% from "macros/comments.html" import disqus_count_script %}
|
|
|
|
{% 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() }}
|
|
{{ disqus_count_script() }}
|
|
{% endblock %}
|