mirror of
https://codeberg.org/SimpleWeb/SimpleerTube.git
synced 2024-11-22 08:31:31 +00:00
fix clickable links on instance homepage
This commit is contained in:
parent
f4bdebb9f5
commit
0100f9bff6
|
@ -8,7 +8,7 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div id="wrap">
|
||||
{% for video in videos.data %}
|
||||
<div class="result-wrapper">
|
||||
<a href="https://{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<a href="/{{ domain }}/videos/watch/{{ video.uuid }}">
|
||||
<img src="https://{{ domain }}{{ video.thumbnailPath }}" height="150"/>
|
||||
</a>
|
||||
|
||||
|
|
Loading…
Reference in a new issue