27 lines
631 B
HTML
27 lines
631 B
HTML
{{ define "main" }}
|
|
{{ template "docs-portal-content" . }}
|
|
{{ end }}
|
|
|
|
{{ define "content-id" }}content{{ end }}
|
|
|
|
{{ define "docs-portal-content" }}
|
|
<section id="mainContent">
|
|
<div class="launch-content">
|
|
<p>{{ .Params.overview | safeHTML }}</p>
|
|
<br>
|
|
<div class="launch-cards">
|
|
{{ $page := (partial "docs/docs-portal-card" .) }}
|
|
{{ .Scratch.Set "html" $page }}
|
|
{{ $page }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
{{ define "hero" }}
|
|
<section class="header-hero text-white pb-4 light-text ">
|
|
{{ if not .Params.notitle }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|