2020-09-19 11:28:47 -07:00
|
|
|
{{ if .context.Params.meta_video }}
|
|
|
|
<div class="my-8">
|
|
|
|
{{ with .context.Params.meta_video }}
|
2022-06-01 10:58:20 -07:00
|
|
|
<video class="rounded shadow-lg" src="{{ .url }}" alt="{{ .Title }}" poster="{{ .poster }}" controls></video>
|
2020-09-19 11:28:47 -07:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ else if .context.Params.meta_image }}
|
|
|
|
<div class="my-8">
|
2022-06-01 10:58:20 -07:00
|
|
|
<img class="rounded" src="{{ (.context.Resources.GetMatch .context.Params.meta_image).RelPermalink }}" alt="{{ .Title }}" />
|
2020-09-19 11:28:47 -07:00
|
|
|
</div>
|
|
|
|
{{ end }}
|