{% extends "base.html" %} {% block title %}Search — Wiki{% endblock %} {% block content %} {% include "wiki/_layout.html" %}

Search the wiki

{% if q %} {% if results %}

{{ results|length }} result{{ '' if results|length == 1 else 's' }} for {{ q }}

{% else %}
No matches for {{ q }}. {% if current_user.is_authenticated %} You can create a new page. {% endif %}
{% endif %} {% endif %} {% endblock %}