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 %}
{% for result in results %}
-
{{ result.path }}
{% if result.matches %}
{% for match in result.matches[:5] %}
-
{{ match.line_number }}
{{ match.line }}
{% endfor %}
{% if result.matches | length > 5 %}
-
… and {{ result.matches | length - 5 }} more match{{ 'es' if result.matches | length - 5 != 1 else '' }}
{% endif %}
{% endif %}
{% endfor %}
{% elif not query %}
Enter a search term above to search your wiki.
{% endif %}
{% endblock %}