aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/odysee.html
blob: 91f03c05d15deaf81586f91ad4e00a80446942e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{- $url      := default "https://odysee.com/$/embed/odysee/7a416c44a6888d94fe045241bbac055c726332aa" (.Get "url"     | default (.Get 0)) -}}
{{- $title    := default "Odysee Video"                                                               (.Get "title"   | default (.Get 1)) -}}
{{- $caption  := default (print $title ": [Link](" $url ")")                                          (.Get "caption" | default (.Get 2)) -}}

<odysee-video>
  <iframe
    sandbox="allow-scripts allow-same-origin allow-presentation"
    id="odysee-iframe"
    src="{{ $url }}"
    title="{{ $title }}"
    allowfullscreen>
  </iframe>
  <figcaption>{{ $caption | markdownify }}</figcaption>
</odysee-video>