github.com/GoogleContainerTools/skaffold/v2@v2.13.2/docs-v2/layouts/shortcodes/blocks/feature4.html (about)

     1  {{ $icon := .Get "icon" | default "fa-lightbulb" }}
     2  {{ $url_text := .Get "url_text" }}
     3  <div class="col-lg-3 mb-5 mb-lg-0 text-center">
     4    <div class="mb-4 h1">
     5      <i class="{{ if not (or (hasPrefix $icon "fas ") (hasPrefix $icon "fab ")) }}fas {{ end }}{{ $icon }}"></i>
     6    </div>
     7    <h4 class="h3">{{ .Get "title" | markdownify }}</h4>
     8    <p class="mb-0 text-left">{{ .Inner }}</p>
     9    {{ with .Get "url" }}<p class="text-left"><a href="{{ . }}">{{ with $url_text }}{{ $url_text }}{{ else }}{{ T "ui_read_more" }}{{ end }} …</a></p>{{ end }}
    10  </div>