SimpleerTube/templates/video_channels/videos.html

29 lines
691 B
HTML
Raw Normal View History

{% extends "video_channels/base.html" %}
{% block title %}{{ domain }}{% endblock %}
2021-01-23 14:20:10 +00:00
{% block content %}
{{ videos.total }} Videos
<br>
<br>
2021-07-17 22:10:24 +00:00
<div id="wrap">
{% for video in videos.data %}
<div class="result-wrapper">
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
2021-07-17 22:10:24 +00:00
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
</a>
2021-07-17 22:10:24 +00:00
<div class="result-info">
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
<br>
{{ video.views }} Views
</a>
</div>
</div>
{% endfor %}
</div>
{% endblock %}