{% extends "base.html" %} {% from "partials/video_card.html" import video_card %} {% from "partials/pagination.html" import pagination %} {% block title %}{{ query }} - YouTube Proxy{% endblock %} {% block content %}
{% if query %}

Search results for "{{ query }}"

{% if items %}

Page {{ page }}{% if total_pages > 1 %} of {{ total_pages }}{% endif %}

{% endif %}
{% endif %} {% if error %}

{{ error }}

{% endif %} {% if items %}
{% for item in items %} {{ video_card(item) }} {% endfor %}
{{ pagination(base_url="/results?search_query=" ~ (query|urlencode), page=page, total_pages=total_pages, has_more=has_more) }} {% elif query and not error %}

No results found

Try different keywords or check your spelling.

{% elif not query %}

Search for videos

Enter a keyword or paste a YouTube URL in the search bar.

{% endif %}
{% endblock %}