{% import "entity_macros.html" as entity_macros %} {% extends "base.html" %} {% block title %} {% if query %} {{ _("Search") }}: {{ query }} {% else %} {{ _("Fulltext Search") }} {% endif %} {% endblock %} {% block fullmain %}

{{ _("Search COVID-19 documents") }}

{#

Can also lookup by identifier or search for containers (eg, journals). #}
{% if found %} {% if found.results %}
{{ entity_macros.top_results(found) }}
{% for paper in found.results %} {{ entity_macros.fulltext_search_result_row(paper) }} {% endfor %}
{% if found.results|length > 8 %}
{{ entity_macros.bottom_results(found)}}
{% endif %} {% else %} {# "did a query, but no results" #}

{{ _("Raw query was:") }} {{ found.query.q }}

{{ _("No results found!") }}

confused paper man

{{ _("Try searching elsewhere") }}:

{% endif %} {% else %} {# "no query submitted" #} {% endif %} {% endblock %}