{% extends "shell.html" %} {% block title %}{{ search_query }}{% endblock %} {% block head %} {% if search_query == "notnite" %}{% endif %} {% endblock %} {% block page %}
{% include "ui/userbar.html" %} {% if alpha %}WARNING! askLyphe is in alpha! user experience is in no way representative of the final product!{% endif %} {% include "ui/navbar.html" %}
search the web search for images
{% match error %} {% when Some with (val) %}
{{ val }}
{% when None %} {% match note %} {% when Some with (val) %}
{{ val }}
{% when None %} {% endmatch %}
found {{ search_results.len() }} results in {{ query_time }} seconds ({{ page_rank_time }} was pageranking)
{% if complications.disabled %}
complications disabled for this query
{% endif %} {% match complications.unit_converter %} {% when Some with (conversion) %}
lyphe unit converter {{ conversion.value }} {{ conversion.unit_a }} = {{ conversion.equals }} {{ conversion.unit_b }}
{% when None %} {% endmatch %} {% match complications.wikipedia %} {% when Some with (wikipedia) %} {% when None %} {% endmatch %}
    {% for result in search_results %} {% include "ui/search_result.html" %} {% endfor %}
{% if blocked.len() > 0 %} {{ blocked.len() }} results were pruned from search results for the following reasons:
    {% for (url, reason) in blocked %}
  1. "{{ url }}" because "{{ reason }}"
  2. {% endfor %}
{% endif %}
{% endmatch %}
{% include "ui/footer.html" %}
{% endblock %}