{% 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 {% if found.offset == 0 %} first {% else %} results {{ found.offset }} — {% endif %} {{ found.offset + found.count_returned }} out of {{ found.count_found }} results for: {{ found.query.q }}
{% if found.offset > 0 %} {% if found.offset - found.limit < 0 %} Prev {% else %} Prev {% endif %} {% endif %} {% if found.offset + found.limit < found.count_found and found.offset + found.limit < found.deep_page_limit %} Next {% endif %} {% 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 %}