{% extends "blog/base_blog.html" %} {% load i18n %} {% block title %}{% trans "Post search" %}{% endblock %} {% block body_class %}{{ block.super }} post_search{% endblock %} {% block content_title %}

{% trans "Search" %}

{% endblock %} {% block content %}

{% if message %}

{{ message }}

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

{{ post.title }}

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

{{ post.tease|safe }}

{% if comment_count %}{{ comment_count }} {% blocktrans with comment_count|pluralize as pluralize %}comment{{ pluralize }}{% endblocktrans %}{% endif %}

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