{% extends "base.html.j2" %} {% import 'macros.imp.j2' as macros %} {% 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() }}
{% for row in rows %} {% call macros.card(row.videoId, row.title, row.publishedText) %} {{ macros.infobar_subscriptions(row.videoId, row.authorId, row.author) }} {% endcall %} {% else %} no more results. {% endfor %} {{ macros.dummycard() }}
{% if page > 1 %} {{ macros.pagination("previous", {'page':(-1,1)}, -1) }} {% endif %} {{ macros.pagination("previous", {'page':(+1,1)}, +1) }}
{% else %} please type a search query. {% endif %} {% endblock %} {% block footer %}
This page is proxied through invidio.us. {% endblock %}