{% extends "base.html" %} {% block title %}{{ library_title }}{% endblock %} {% block meta_description %}Browse {{ library_title|lower }} from Radiuma.{% endblock %} {% block content %}
Video library

{{ library_title }}

{{ library_description }}

← {{ library_back_label }}

{{ paginator.count }} video{{ paginator.count|pluralize }}

{% if paginator.num_pages > 1 %}Page {{ page_obj.number }} of {{ paginator.num_pages }}{% endif %}
{% for video in videos %}
{% include "partials/_video_block.html" with video=video compact_header=True %}
{% empty %}

No videos available

New videos will appear here when they are published.

{% endfor %}
{% if page_obj.has_other_pages %} {% endif %}
{% endblock %}