mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
48 lines
1.2 KiB
HTML
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 }} |