{% extends "base.html" %} {% block content %}
Search:
{% if meta["q"] is not none %}
{% else %}
{% endif %}

{% if meta["qs"] != None %}

{{ meta["qs"] }}


{% endif %} {% if docs != None %} Previous Next {% if meta["keyword_fq"] is not none or meta["author_fq"] is not none or meta["org_fq"] is not none %} All {% endif %}

Showing {{ meta["start"] }}-{{ meta["end"] }} results of {{ meta["numFound"] }} matches for '{{ meta["q"] }}' {% if meta["keyword_fq"] is not none %} (filtered by keyword '{{ meta["keyword_fq"] }}') {% endif %} {% if meta["author_fq"] is not none %} (filtered by author '{{ meta["author_fq"] }}') {% endif %} {% if meta["org_fq"] is not none %} (filtered by org '{{ meta["org_fq"] }}') {% endif %}

    {% for doc in docs %}
  1. {{ doc["title"] }} ({{ doc["year"] }})
    {{ doc["authors"]|join(", ") }}  (Score: {{ doc["score"] }})
    {{ doc["abstract"] }}
  2. {% endfor %}
Previous Next {% if meta["keyword_fq"] is not none or meta["author_fq"] is not none or meta["org_fq"] is not none %} All {% endif %} {% endif %} {% endblock %}