{% extends "base.html" %} {% block title %} {% endblock %} {% block txtlist %} {% endblock %} {% block results %} {% if results == {} %}
No sentences.
{% else %}

cross readings
through {{ word }} ({{ word_type }})

{% for document, sentences in results['sentences'].items() %} {% for sentence in sentences %}
{{ sentence }} ({{ document }})
{% endfor %} {% endfor %} {% endif %} {% endblock %}