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