summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/youtube.html
blob: 4e38c50b71663c8e4592610dda4c6f526820549d (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- $id := .Get 0 }}
{{- $title := .Get 1 }}
{{- $path := printf "ytcovers/%s.jpg" $id}}
{{- $img := resources.Get $path }}
{{- $img = $img.Resize "x300 webp" }}

<center>
<a href="https://www.youtube.com/watch?v={{$id}}" target="_blank">
  <img src="{{$img.Permalink}}" alt="{{$title}} on Youtube" width="{{$img.Width}}" height="{{$img.Height}}"/>
</a>
</center>