{% import "search_macros.html" as search_macros %} {% extends "base.html" %} {% block fullbody %}
{% if found %}
{{ "{:,}".format(found.count_found) }}
Hits
{% else %} Maybe some filters, facets, counts over here? {% endif %}
Release Date
Resource Type
Availability
Sort Order
{% if found %} {% if found.results %} {% for paper in found.results %} {{ search_macros.fulltext_search_result_row(paper) }} {% endfor %} {% endif %} {% else %} Some other message here when there is no search? Like a bunch of examples? Or does that ever happen... we can just run query on "*". {% endif %}
{% endblock %}