forked from mirrors/bookwyrm
target _blank should be on source not book
This commit is contained in:
parent
20264bc3f5
commit
ace1daa1f9
1 changed files with 2 additions and 2 deletions
|
@ -6,13 +6,13 @@
|
||||||
<section>
|
<section>
|
||||||
{% if not result_set.connector.local %}
|
{% if not result_set.connector.local %}
|
||||||
<h3>
|
<h3>
|
||||||
Results from <a href="{{ result_set.connector.base_url }}">{{ result_set.connector.name }}</a>
|
Results from <a href="{{ result_set.connector.base_url }}" target="_blank">{{ result_set.connector.name }}</a>
|
||||||
</h3>
|
</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% for result in result_set.results %}
|
{% for result in result_set.results %}
|
||||||
<div>
|
<div>
|
||||||
<a href="/book/{{ result.key }}" target="_blank">{{ result.title }}</a> by {{ result.author }} ({{ result.year }})
|
<a href="/book/{{ result.key }}">{{ result.title }}</a> by {{ result.author }} ({{ result.year }})
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Reference in a new issue