{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block title %}{{ site.domain }}: Search Results{% endblock %} {% block nav_path %}{{ site.domain }} › Search Results{% endblock %} {% block content %} {% if too_small %}

No Search Results

Search string "{{ search_string }}" too small.

{% else %}

Search Results for "{{ search_string }}"

Title Matches

{% if title_matches %}
    {% for page in title_matches %}
  1. {{ page.title }}
  2. {% endfor %}
{% else %}

No matching titles found.

{% endif %}

Content Matches

{% if content_matches %}
    {% for match in content_matches %}
  1. {{ match.page.title }}, found {{ match.number_found }} {% if match.number_found == 1 %}match{% else %}matches{% endif %}:
  2. {% endfor %}
{% else %}

No matching content found.

{% endif %} {% endif %} {% endblock %}