{% extends "base.html" %} {% load static %} {% load hilight %} {% block title %}Search{% endblock %} {% block header_bar %} Search {% endblock %} {% block content %}

Search result for '{{ q }}'

{% for result in results %}

{{ result.title | hilight:tokens }}

{{ result.text | safe }}
{% empty %}

Noting found

{% endfor %} {% if pages > 1 %} {% endif %} {% endblock %}