This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
negromate_origins/web/negromateweb/templates/home.html

14 lines
342 B
HTML
Raw Normal View History

2018-10-12 23:00:20 +02:00
{% 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 %}