{% extends "base.html" %} {% block head %} Search {% endblock head %} {% block body %}

Search

Manual {% include "icons/plus.html" %}
{% block search_suggestions %} {% for suggestion in (suggestions or [])[:3] %}{% endfor %} {% endblock search_suggestions %}
{% block book_results %}
{% for result in search_results %} {% set book = result.book %}
{% if book.cover_image %} {{ book.title }} {% else %} {% include "icons/photo-off.html" %} {% endif %}
{{ book.title }} {% if book.subtitle %}
{{ book.subtitle }}
{% endif %}
{% endfor %}
{% endblock book_results %} {% if search_results or page > 0 %}
{% endif %} {% if not search_results %}
{% if search_term %} No results found No audiobooks were found. Do note, that internally Audible is used for searching. If the book doesn't exist on Audible it'll have to be added manually. {% else %} Perform a search Nothing has been searched yet. {% endif %}
{% endif %}
{% endblock body %}