{% extends 'base.html' %} {% load static %} {% block title %}Search Results for "{{ query }}" | Scholar Search{% endblock %} {% block meta_description %}Search results for "{{ query }}" - Find blogs, categories, topics and more{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Search Our Archives

{% if query %}

Search results for "{{ query }}"

Found {{ total_results }} result{% if total_results != 1 %}s{% endif %}

{% else %}

Search our content

Enter a search term to find blogs, categories, topics and more

{% endif %}
{% if total_results == 0 and query %}

No results found

We couldn't find any content matching "{{ query }}". Please try another search term.

Try:

  • Using more general keywords
  • Checking your spelling
  • Using fewer words
{% endif %} {% if total_results > 0 %}
{% if blogs %}

Blogs ({{ blogs|length }})

{% for blog in blogs %}

{{ blog.title }}

{{ blog.author.name }} {{ blog.created_at|date:"M d, Y" }}
{{ blog.content|striptags|truncatechars:200 }}
{% if blog.category %} {{ blog.category.title }} {% endif %}
{% endfor %}
{% endif %} {% if topics %}

Topics ({{ topics|length }})

{% endif %}
{% if blog_categories %}

Blog Categories ({{ blog_categories|length }})

{% for category in blog_categories %}

{{ category.title }}

{% endfor %}
{% endif %} {% if topic_categories %}

Topic Categories ({{ topic_categories|length }})

{% for category in topic_categories %}

{{ category.title }}

{% endfor %}
{% endif %}

Search Tips

  • Use quotes for exact phrase matching: \"legal precedent\"
  • Try different variations of your search terms
  • Be specific with keywords to narrow results
{% if paginated_results.has_other_pages %}
{% endif %} {% endif %}
{% endblock %}