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

Search results :

{% if allPosts|length < 1 %}

No search results

Your search query : {{query}} did not match any documents.
Suggestions: {% endif %} {% for post in allPosts %}
Article by {{post.author}}

{{post.title}}

{{post.datetime}}

{{post.content| truncatechars:500}}

Placeholder Thumbnail
{% endfor %}
{% endblock %}