{% extends 'material_base.html' %} {% block title %}Search page{% endblock %} {% block description %}Search the AYTA archive{% endblock %} {% block content %}

Search the archive

Searching is currently partially working and will probably not work optimally for a long time until the database and backend is fully reworked.

In the meantime if you know the channel name and video title you can use local search on this page

{% if stats is defined %}
Stats of the archive
{% endif %}
"A big archive needs a search function." -Sun Tzu
Input will be interpreted as keywords. You can search for literal text by using quotes("). Or exclude by prepending minus (-).
{% if results is defined %}
{% for result in results %} {% endfor %}
Title Uploader Date
{{ result.get('title') }} {{ result.get('uploader') }} {{ result.get('upload_date')|pretty_time }}
{% if results|length == 0 %}
No results. Relax the search terms more please!
{% else %}

Not the results you were looking for? Try adding quotes ("") around important words.

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