Files
elasticsearch/httpdemo/index.html
2023-05-14 18:15:10 +02:00

27 lines
618 B
HTML

<html>
<body>
<h1>Suche:</h1>
<p><form action="" href="#"><input name="q" /></form></p>
<p><b>Message:</b>{{message}}</p>
<ul style="list-style: none;">
{% for r in results %}
<li>
<a href="https://{{r['_source']['url']}}">
{{r["_source"]["title"]|safe }}
</a>
{{r["_score"]|safe }}
{{r["sort"]|safe }}
<br /><br />
{% for hh in r["highlight"] %}
{% for h in r["highlight"][hh] %}
{{ h |safe}} <br />
{% endfor %}
{% endfor %}
</li>
{% endfor %}
</ul>
</body>
</html>