{% extends "base.html" %} {% block title %}Search{% endblock %} {% block search_value %}{{ query }}{% endblock %} {% block content %}

Search

{% if query %}

{% if results %} Found {{ results | length }} page{{ 's' if results | length != 1 else '' }} matching “{{ query }}”. {% else %} No results found for “{{ query }}”. {% endif %}

{% endif %} {% if results %} {% elif not query %}

Enter a search term above to search your wiki.

{% endif %}
{% endblock %}