mirror of
https://codeberg.org/SimpleWeb/SimpleerTube.git
synced 2024-11-14 21:23:16 +00:00
Make video thumbnails clickable on instance homepage
This commit is contained in:
parent
a624de1ec3
commit
f4bdebb9f5
|
@ -8,7 +8,9 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
<div class="result-info">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
<div class="result-info">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
<div class="result-info">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
|
||||
|
|
|
@ -8,7 +8,9 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
<div class="result-info">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">{{ video.name }}</a>
|
||||
|
|
Loading…
Reference in a new issue