Serotonin Storm

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


{% block title %}Post categories{% endblock %}
{% block body_class %}{{ block.super }} category_list{% endblock %}


{% block content_title %}
  <h2>Post categories</h2>
{% endblock %}


{% block content %}
  <ul class="link_list">
    {% for category in object_list %}
    <li><a href="{{ category.get_absolute_url }}">{{ category }}</a></li>
    {% endfor %}
  </ul>
{% endblock %}