{% extends 'home/base/base.html' %} {% block title %} Search Result | MultiBlogs {% endblock %} {% block body %}
{% if post %}

Showing Result of : {{ search }}


{% for p in post %}

{{ p.title}}

{{p.detail|truncatechars:100}}

{{p.author.author.username}} in {{ p.catagories}} {{ p.created_at | timesince }} ago . {{p.visit_count}} views
{% endfor %}
{% else %}

Your search - {{ search }} - did not match any documents.

Suggestions:
{% endif %}
{% endblock %}