{% extends 'material_base.html' %} {% block title %}Recent videos{% endblock %} {% block description %}The last videos to have been added to the archive{% endblock %} {% block content %}

Videos lising page

Recent videos

The last 99 videos to have been added to the archive.

{% for video in videos %}
{{ video.get('title') }}

{{ video.get('uploader') }}

{{ video.get('id') }} | {{ video.get('upload_date')|pretty_time }}

{{ video.get('title') }}

{{ video.get('description') }}

{% endfor %}
{% endblock %}