Create a partial for auto-generating video pages.
This commit is contained in:
17
layouts/partials/odysee.html
Normal file
17
layouts/partials/odysee.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{{ $src := .Param "video_url"
|
||||
}}{{ $width := .Param "video_width" | default (.Param "odyseeVideoWidthPercentage") }}
|
||||
<iframe
|
||||
id="odysee-iframe"
|
||||
style="width:{{ $width }}%; aspect-ratio:16 / 9;"
|
||||
src="{{ $src }}"
|
||||
allowfullscreen>
|
||||
</iframe>
|
||||
<br>
|
||||
|
||||
{{ with .Params.video_desc }}
|
||||
{{ range . -}}
|
||||
<p>
|
||||
{{ . }}
|
||||
</p>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user