mirror of
https://github.com/kubesphere/website.git
synced 2025-12-30 00:52:47 +00:00
18 lines
427 B
HTML
18 lines
427 B
HTML
{{ define "main" }}
|
|
|
|
{{ with .Params.section1}}
|
|
<section class='section-1 bg-cover' style='background-image: url("{{ .image }}");'>
|
|
<div class="title-div common-layout">
|
|
<h1 class="title-h1">{{ .title }}</h1>
|
|
<p class="common-p">{{ .content }}</p>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
<section class="section-2">
|
|
<div class="common-layout">
|
|
{{ partial "section" . }}
|
|
</div>
|
|
</section>
|
|
|
|
{{ end }} |