{% extends "base.html" %} {% block title %}Zoeken{% if q %}: {{ q }}{% endif %}{% endblock %} {% block content %}
{% if q %}

{{ results.total }} resultaat{{ results.total != 1 and 'ten' or '' }} voor "{{ q }}"

{% endif %} {% if results and results.results %}
{% for doc in results.results %}

{{ doc.title or doc.filename }}

{{ doc.category or '—' }}
{% if doc.snippet %}

{{ doc.snippet|safe }}

{% endif %}
{{ doc.author or '—' }} {% if doc.pages %}{{ doc.pages }} pg{% endif %} {% if doc.file_size %}{{ doc.file_size }}{% endif %}
{% endfor %}
{% if results.pages > 1 %} {% endif %} {% else %}

Geen resultaten gevonden.

• Controleer de spelling van je zoekterm

• Gebruik minder specifieke termen

• Zoek op categorie in plaats van vrije tekst

← Terug naar overzicht
{% endif %} {% endblock %}