icon.html 237 B

123456
  1. {{- $iconFile := resources.GetMatch (printf "icons/%s.svg" .) -}}
  2. {{- if $iconFile -}}
  3. {{- $iconFile.Content | safeHTML -}}
  4. {{- else -}}
  5. {{- errorf "Error: icon '%s.svg' is not found under 'assets/icons' folder" . -}}
  6. {{- end -}}