{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %} {% if results %}
{% for result in results %}
{{ result.title }}
{{ result.description }}
{% endfor %}
{% endif %}

{% if results %}

You searched for "{{ query }}".

{% if results %}

Search results:

{% endif %} {% endif %} {% if query and not results %}

No results found.

{% endif %} {% if not query %}

Please make a query! I'm hungry!

{% endif %} {% endblock %}