cross-reader/templates/en/index.html

25 lines
601 B
HTML
Raw Normal View History

{% extends "en/base.html" %}
{% block results %}
{% endblock %}
{% block suggestions %}
<!-- <h1>Cross-reading suggestions (manual selection):</h1>
<div>
{% for word in suggestions %}
<strong class="query"><a href="/{{ lang }}/?q={{word}}">{{ word.strip() }}</a></strong>
{% endfor %}
</div>
<br> -->
<!-- <h1>Cross-reading suggestions:</h1>
<div>
2019-03-07 23:37:37 +01:00
{% for word in mappings %}
<strong class="query"><a href="/{{ lang }}/?q={{ word }}">{{ word.strip() }}</a></strong>
{% endfor %}
</div>
<br>
<p>Read more about <a href="/{{ lang }}/about">cross-readings</a>.</p>
<br>
<br> -->
{% endblock %}