{% import "entity_macros.html" as entity_macros %} {% 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 %} {{ entity_macros.top_results(found) }} {% 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 %}
{{ entity_macros.bottom_results(found, endpoint='container_search')}}
{% endif %} {% else %} Raw query was: {{ found.query.q }}
confused paper man

No results found!

You could try elsewhere:

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