bookwyrm/fedireads/templates/book_results.html
2020-05-03 13:12:42 -07:00

21 lines
639 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div class="content-container">
<h2>Search results</h2>
{% for result_set in results %}
<section>
{% if not result_set.connector.local %}
<h3>
Results from <a href="{{ result_set.connector.base_url }}">{{ result_set.connector.name }}</a>
</h3>
{% endif %}
{% for result in result_set.results %}
<div>
<a href="/book/{{ result.key }}" target="_blank">{{ result.title }}</a> by {{ result.author }} ({{ result.year }})
</div>
{% endfor %}
</section>
{% endfor %}
</div>
{% endblock %}