{% extends "base.html" %} {% block title %}{% if query %}Search Results for "{{ query }}"{% else %}Search the KJV Bible{% endif %} - KJV Study{% endblock %} {% block description %}{% if query %}Search results for "{{ query }}" in the King James Bible.{% else %}Search the complete King James Bible.{% endif %}{% endblock %} {% block head %} {% endblock %} {% block content %}

Search the KJV Bible

Search across all verses in the Authorized King James Version

{% if query %} {% if total_results > 0 %}
Found {{ total_results }} result{{ 's' if total_results != 1 else '' }} for "{{ query }}"
{% if family_tree_results %}

People in Family Tree

{% for result in family_tree_results %}
{{ result.description }} {% if result.birth_year != "Unknown" or result.death_year != "Unknown" %} • {% if result.birth_year != "Unknown" %}Born {{ result.birth_year }}{% endif %} {% if result.death_year != "Unknown" %}{% if result.birth_year != "Unknown" %}, {% endif %}Died {{ result.death_year }}{% endif %} {% endif %}
{% endfor %} {% endif %} {% if results %}

Bible Verses

{% for result in results %}
{{ result.highlighted_text | link_names | safe }}
{% endfor %} {% endif %} {% elif total_results == 0 %}

No results found for "{{ query }}". Try different words or check your spelling.

{% endif %} {% endif %} {% if not query or total_results == 0 %}

Search Tips

{% endif %}
{% endblock %}