mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 09:24:23 +00:00
13 lines
511 B
HTML
13 lines
511 B
HTML
{{ $_hugo_config := `{ "version": 1 }` }}
|
|
{{ $col_id := .Get "color" | default .Ordinal }}
|
|
{{ $height := .Get "height" | default "auto" }}
|
|
{{/* Height can be one of: auto, min, med, max, full. */}}
|
|
<a id="td-block-{{ .Ordinal }}" class="td-offset-anchor"></a>
|
|
<section class="row td-box td-box--{{ $col_id }} position-relative td-box--gradient td-box--height-{{ $height }}">
|
|
<div class="container text-center td-arrow-down">
|
|
<span class="h4 mb-0">
|
|
{{ .Inner | markdownify }}
|
|
</span>
|
|
</div>
|
|
</section>
|