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

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