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

Search all Releases


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

{% if found %} {% if found.results %} Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: {{ found.query.q }} {% for paper in found.results %} {{ entity_macros.release_search_result_row(paper) }} {% endfor %} {% if found.results|length > 8 %}
Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: {{ found.query.q }} {% endif %} {% else %} Raw query was: {{ found.query.q }}
confused paper man

No results found!

You could try elsewhere:

{% endif %} {% endif %}
{% endblock %}