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

No Search Results

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

{% else %}

Search Results for "{{ feedreader_search_string }}"

Title Matches

{% if title_matches %}
    {% for entry in title_matches %}
  1. {{ entry.title|safe }} ({{ entry.feed.title|safe }}; {{ entry.published_time}}; {{ entry.published_time|timesince }} ago)
  2. {% endfor %}
{% else %}

No matching titles found.

{% endif %}

Description Matches

{% if description_matches %}
    {% for entry in description_matches %}
  1. {{ entry.title|safe }} ({{ entry.feed.title|safe }}; {{ entry.published_time}}; {{ entry.published_time|timesince }} ago):

    {{ entry.description|safe }}

  2. {% endfor %}
{% else %}

No matching content found.

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