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

Journal/Conference Search


Can also lookup by identifier or search releases.

{% 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 entity in found.results %}

{{ entity['name'] }} {% if entity.is_oa %}{% endif %}

{% if entity.publisher %}
{{ entity.publisher }}
{% endif %} {% if entity.issnl %} issn:{{ entity.issnl }} {% endif %} {% if entity.container_type %}  {{ entity.container_type }} {% endif %}
{% 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 %}