25 lines
601 B
HTML
25 lines
601 B
HTML
{% 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>
|
|
{% 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 %}
|