mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
13 lines
341 B
HTML
13 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 %}
|