summaryrefslogtreecommitdiff
path: root/themes/blowfish/layouts/shortcodes/icon.html
blob: 7203424da6f229a6ed7b3257b05dd00d48512579 (plain)
1
2
3
4
5
6
7
8
{{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }}
{{ if $icon }}
  <span class="relative inline-block align-text-bottom icon">
    {{ $icon.Content | safeHTML }}
  </span>
{{ else }}
  {{ errorf `[BLOWFISH] Shortcode "icon" error in "%s": Resource "%s" not found. Check the path is correct or remove the shortcode.` .Page.Path (printf "icons/%s.svg" ($.Get 0)) }}
{{ end }}