{% 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 %}
  1. {{doc.title_s}} {% if doc.get('snippet') %}

    {{doc['snippet']|safe}}

    {% endif %}
  2. {% endfor %}
{% endblock %}