website/layouts/live/single.html
liuboaibc 64a6e2dbef update live
Signed-off-by: liuboaibc <kukudehero@gmail.com>
2021-05-26 11:30:58 +08:00

48 lines
1.2 KiB
HTML

{{ define "main" }}
<section class="section-1">
<div>
{{ with .Params.section1 }}
{{ if .liveUrl }}
<div class="live-div">
<a href="{{ .liveUrl }}" target="_blank">
<img src="{{ .snapshot }}" alt="snapshot">
<button>{{ i18n "Watch live" }}</button>
</a>
</div>
{{ end }}
{{ if .videoUrl }}
<div class="video-div">
{{ if eq .type "iframe" }}
<iframe
src="{{ .videoUrl }}"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
{{ else }}
<video src="{{ .videoUrl }}" controls poster="{{ .snapshot }}"></video>
{{ end }}
</div>
{{ end }}
<div class="time-div">
<img src="{{ .timeIcon }}" alt="icon">
<span>{{ .time }}</span>
<img src="{{ .baseIcon }}" alt="icon">
<span>{{ .base }}</span>
</div>
{{ end }}
<h1>{{ .Title }}</h1>
<div class='content'>
<div class='md-body'>
{{ .Content }}
</div>
</div>
</div>
</section>
{{ end }}