Serotonin Storm

source>templates>blog>category_detail.html
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
{% extends "blog/base_blog.html" %}


{% block title %}Posts for {{ category.title }} | {{ block.super }}{% endblock %}
{% block body_class %}{{ block.super }} category_detail{% endblock %}
{% block body_id %}category_{{ category.id }}{% endblock %}

{% block content %}

<h2 class="filter-title">Posts for {{ category.title }}</h2>

  <div class="post_list">
    {% for post in object_list %}
	{% include "blog/includes/_post_list.html" %}
    {% endfor %}
  </div>
{% endblock %}