{% extends 'get_started/layout.html' %} {% load i18n %} {% block panel %}

{% trans "What are you reading?" %}

{% if request.GET.query and not book_results %}

{% blocktrans %}Sorry, books were found. You can add books when you start using {{ site_name }}{% endblocktrans %}

{% endif %}

{% trans "Suggested Books" %}

{% if book_results %}

Search results

{% for book in book_results %}
{% include 'snippets/book_cover.html' with book=book %}
{% endfor %}
{% endif %}

{% blocktrans %}Popular on {{ site_name }}{% endblocktrans %}

{% for book in popular_books %}
{% include 'snippets/book_cover.html' with book=book %}
{% endfor %}
{% endblock %}