feature.html 480 B

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