github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/layouts/_default/content.html (about) 1 <div class="td-content"> 2 <h1>{{ .Title }} 3 {{if .Params.featureId}} 4 {{ $data := (index .Site.Data.maturity .Params.featureId)}} 5 {{ $maturity := $data.maturity}} 6 {{if and $maturity (not (eq $maturity "GA")) }} 7 <sup style="background: var(--maturity-{{$maturity}})"> {{ $maturity}} </sup> 8 {{end}} 9 {{end}} 10 </h1> 11 {{ with .Params.description }} 12 <div class="lead">{{ . | markdownify }}</div>{{ end }} 13 {{ .Content }} 14 {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} 15 {{ partial "feedback.html" .Site.Params.ui.feedback }} 16 <br/> 17 {{ end }} 18 <div class="text-muted mt-5 pt-3 border-top">{{ partial "page-meta-lastmod.html" . }}</div> 19 </div>