{% extends "base.html" %} {% block title %}Search{% endblock %} {% block content %}
{% csrf_token %}
{% include "forms/_field.html" with field=form.query %}
{% if results.identities %}

People

{% for identity in results.identities %} {% include "activities/_identity.html" %} {% endfor %} {% endif %} {% if results.hashtags %}

Hashtags

{% for hashtag in results.hashtags %} {% include "activities/_hashtag.html" with hide_stats=True %} {% endfor %}
{% endif %} {% if not results.identities and not results.hashtags %}

No results (yet)

No results found — not yet, at least. The search swamphens are still rooting around behind the scenes and may yet turn something up. If you try your search again after a moment, you might get lucky!

{% endif %} {% endblock %}