{% extends "base.html" %} {% block title %}Search — yt-archiver{% endblock %} {% block content %}

Search

{% if query or year %} {{ videos|length }} result{{ 's' if videos|length != 1 else '' }} for {% if query %}"{{ query }}"{% endif %}{% if year %} {{ year }}{% endif %} {% else %} Enter a query above to search. {% endif %}
{% for v in videos %} {% endfor %}
Date Title Duration Views
{{ v.upload_date or '—' }} {{ v.title }} {{ v.duration|duration }} {{ v.view_count|count }} Watch ↗
{% endblock %} {% block scripts %} {% endblock %}