mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-30 20:10:36 +00:00
14 lines
341 B
HTML
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 %}
|