{% extends "blog/base_blog.html" %}
{% load frontendadmin_tags %}
{% block title %}{{ block.super }}{% endblock %}
{% block body_class %}{{ block.super }} post_list{% endblock %}
{% block content_title %}{% endblock %}
{% block content %}
<div>{% frontendadmin_add object_list %}</div>
<div class="post_list">
{% for post in object_list %}
{% include "blog/includes/_post_detail.html" %}
{% endfor %}
</div>
{% if is_paginated %}
{% include "blog/includes/_pagination.html" %}
{% endif %}
{% endblock %}