{% import "entity_macros.html" as entity_macros %} {% import "search_macros.html" as search_macros %} {% extends "base.html" %} {% block title %} {% if query.q %} Search: {{ query.q }} {% else %} Release Search {% endif %} {% endblock %} {% block fullmain %}

Search all Releases


Can also lookup by identifier or search for containers (eg, journals).

{% if container_found and container_found.results %}
Were you looking for this journal, instead of publications?
{{ entity_macros.container_search_result_row(container_found.results[0]) }}

{% endif %} {% if found %} {% if found.results %} {{ search_macros.top_results(query, found) }} {% for paper in found.results %} {{ entity_macros.release_search_result_row(paper) }} {% endfor %} {% if found.results|length > 8 %}
{{ search_macros.bottom_results(query, found, endpoint='release_search') }}
{% endif %} {% else %} Raw query was: {{ query.q }}
confused paper man

No results found!

You could try elsewhere:

{% endif %} {% elif es_error %} {{ search_macros.es_error_msg(es_error) }} {% endif %}
{% endblock %}