{% extends "kioblog/base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans 'Search' %}{% endblock %} {% block content %}
{% if query %}

{% blocktrans count counter=count %}{{ count }} result for "{{ query }}"{% plural %}{{ count }} results for "{{ query }}"{% endblocktrans %}

{% endif %} {% for post in posts %}

{{ post.category.title }}

{{ post.title }}

{{ post.user.get_full_name }} {{ post.published|date:'Y/m/d' }} · {{ post.reading_time }} min read
{{ post.display_excerpt }}
{% empty %} {% if query %}

{% trans 'No results found.' %}

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