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

Search

Manual {% include 'icons/plus.html' %}
{% block search_suggestions %} {% for suggestion in suggestions %} {% endfor %} {% endblock %}
{% block book_results %}
{% for book in search_results %}
{% if book.cover_image %} {{ book.title }} {% else %} {% include 'icons/photo-off.html' %} {% endif %}
{{ book.title }} {% if book.subtitle %}
{{ book.subtitle }}
{% endif %}
{{ book.authors | join(", ") }}
{% endfor %}
{% endblock %} {% 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 %}