bookwyrm/fedireads/templates/book_results.html
2020-01-29 01:05:27 -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="/work/{{ result.olkey }}">{{ result.title }}</a> by {{ result.author }} ({{ result.year }})
</div>
{% endfor %}
</div>
</div>
{% endblock %}