bookwyrm/fedireads/templates/book_results.html
2020-02-10 21:09:04 -08:00

14 lines
341 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
<h1>Search results</h1>
{% for result in results %}
<div>
<a href="/book/{{ result.olkey }}">{{ result.title }}</a> by {{ result.author }} ({{ result.year }})
</div>
{% endfor %}
</div>
</div>
{% endblock %}