{% extends "base.html.j2" %} {% import 'macros.imp.j2' as macros %} {% block favicon %} {{ super() }} {% endblock %} {% block title %} {% if rows is not none %}{{ query | e }} — Search results {% else %}Search Youtube Videos{% endif %} {% endblock %} {% block content %} {% if rows is not none %} {{ super() }} {# TODO: this is mostly copy-pasted (changed video infobar) from watch.j2's info/endcard section -- dedup! #}
{%for x in rows|selectattr('content.error')%}{{x.content.error}}{%endfor%}
{% for card in rows %} {{ macros.typed_card(card) }} {% endfor %} {{ macros.dummycard() }}
{{ macros.more({'continuation': continuation}) if continuation }}
{% else %} please type a search query. {% endif %} {% endblock %} {% block footer %}
{% endblock %}