{% extends "base.html" %} {% block title %}{{query}}{% endblock %} {% block txtlist %}
[*] The algorithm is asked to not return more than 3 sentences from the same manifesto. There are more sentences that match this search query!
{% endblock %} {% block results %}

The results for the query "{{query}}" are:

{% if results == {} %}
That word is not used in any of the manifesto's.
{% else %} {% for _, manifesto in results.items() %}

{{manifesto.name}}

{% for i in range(manifesto.tf) %} {{query}} {% endfor %}
{% endfor %}
{% endif %}
{% endblock %}