14 lines
342 B
HTML
14 lines
342 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block content %}
|
||
|
<div class="videos">
|
||
|
{% for video in videos %}
|
||
|
<figure>
|
||
|
<legend><a href="{{ video.path|url }}">{{ video.name }}</a></legend>
|
||
|
{% if video.thumbnail %}
|
||
|
<a href="{{ video.path|url }}"><img src="{{ video.thumbnail|url }}"></a>
|
||
|
{% endif %}
|
||
|
</figure>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endblock %}
|