SimpleerTube_peertube_minim.../templates/video_channels/videos.html

33 lines
693 B
HTML

{% extends "video_channels/base.html" %}
{% block title %}{{ domain }}{% endblock %}
{% block sub_content %}
{{ videos.total }} Videos
<br>
<br>
<table>
{% for video in videos.data %}
<tr>
<td>
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
</a>
</td>
<td>
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
<br>
{{ video.views }} Views
<br>
<b>{{ video.channel.displayName }}</b>
</a>
</td>
</tr>
{% endfor %}
</table>
{% endblock %}