{% extends 'base.html' %} {% block title %}Search result{% endblock title %} {% block blogactive %}active{% endblock blogactive %} {% block body %}

search result

{% if allposts|length < 1 %}

No Search result

your search - {{query}}- did not match any document Suggestion:
Try diffrent keyword {% endif %} {% for post in allposts %}
Artical by {{post.author}}

{{post.title}}

{{post.datetime}}2

{{post.content |truncatechars:200}}

{% endfor %}
> {% endblock body %}