blob: a6298eff2c7c5689bb78c36240dc57fc0d8f7bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{{- $caption := .Inner }}
{{- $id := .Get 0 }}
{{- $title := .Inner }}
{{- $path := printf "ytcovers/%s.jpg" $id}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "x300 webp q90" }}
{{- $img2x := $img.Resize "x600 webp q90" }}
<figure>
<a href="https://redirect.invidious.io/watch?v={{$id}}" target="_blank">
<img
class="center"
src="{{ $img1x.Permalink }}"
srcset="
{{ $img1x.Permalink }} 1x,
{{ $img2x.Permalink }} 2x
"
width="{{ $img1x.Width }}"
height="{{ $img1x.Height }}"
alt="{{$title}} on Youtube"
>
</a>
<figcaption>
{{ $caption }}
<br>
[watch on:
<a href="https://redirect.invidious.io/watch?v={{$id}}" target="_blank">Invidous</a> |
<a href="https://piped.video/watch?v={{$id}}" target="_blank">Piped</a> |
<a href="https://www.youtube.com/watch?v={{$id}}" target="_blank">Youtube</a>
]
</figcaption>
</figure>
|