{% set hide_left_bar = True %} {% extends g.theme.master %} {% block title %}{{c.project.name}} / Search{% endblock %} {% block header %}Search Project: {{q}}{% endblock %} {% block content %}

Search history?
 
{% if count == 0 and q %}

No results.

{% elif count == 1 and q %}

{{count}} result.

{% elif count > 1 and q %}

{{count}} results.

{% endif %} {% for doc in results %}
{{doc.title_s}}
{{doc['snippet']|safe}}

{% endfor %} {% endblock %}