github.com/cs3org/reva/v2@v2.27.7/docs/layouts/shortcodes/blocks/feature.html (about) 1 {{ $icon := .Get "icon" | default "fa-lightbulb" }} 2 {{ $url_text := .Get "url_text" }} 3 {{ $color := .Get "color" | default "black" }} 4 <div class="col-lg-4 mb-5 mb-lg-0 text-center "> 5 <div class="mb-4 h1"> 6 <i class="{{ if not (or (hasPrefix $icon "fas ") (hasPrefix $icon "fab ")) }}fas {{ end }}{{ $icon }} -text-{{ $color }}"></i> 7 </div> 8 <h4 class="h3">{{ .Get "title" | markdownify }}</h4> 9 <p class="mb-0">{{ .Inner }}</p> 10 {{ with .Get "url" }}<p><a href="{{ . }}">{{ with $url_text }}{{ $url_text }}{{ else }}{{ T "ui_read_more" }}{{ end }} …</a></p>{{ end }} 11 </div>