{% 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

Showing {{ meta["start"] }}-{{ meta["end"] }} results of {{ meta["numFound"] }} matches for '{{ meta["q"] }}'

    {% for doc in docs %}
  1. {{ doc["title"] }} ({{ doc["year"] }})
    {{ doc["author_names"]|join(", ") }}  (Score: {{ doc["score"] }})
    {{ doc["abstract"] }}
  2. {% endfor %}
Previous Next {% endif %} {% endblock %}