{% extends "blog/base_blog.html" %} {% block title %}Post search{% endblock %} {% block body_class %}{{ block.super }} post_search{% endblock %} {% block main-content_title %}

Search

{% endblock %} {% block main-content %}

{% if message %}

{{ message }}

{% endif %} {% if object_list %}
{% for post in object_list %}

{{ post.title }}

{{ post.publish|date:"Y F d" }}

{{ post.tease }}

{% if comment_count %}{{ comment_count }} comment{{ comment_count|pluralize }}{% endif %}

{% endfor %}
{% endif %} {% endblock %}