{% extends 'base.html' %} {% block title %}Stackdump // {{ site.name }} search for "{{ query }}"{% endblock %} {% block body %}
{% include 'includes/results.html.inc' %}

{{ total_hits }}

questions matched your query "{{ query }}".

{# don't bother showing if we're the only site. #} {% if sites|list|length > 1 %}

Search other sites

    {% for s in sites %} {# don't show the current site #} {% if s.key != site.key %}
  • {{ s.name }} logo
    {{ s.name }} {{ s.dump_date }}
  • {% endif %} {% endfor %}

or...

search across all sites.
{% endif %}
{% endblock %}