lynx/layouts/shortcodes/icon.html
James Panther 4b3038bb49
🎨 Code cleanup
2024-05-01 15:17:15 +10:00

9 lines
256 B
HTML

<span class="icon relative inline-block align-text-bottom">
{{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }}
{{ if $icon }}
{{ $icon.Content | safeHTML }}
{{ else }}
<em>{{ i18n "shortcode.icon_none" }}</em>
{{ end }}
</span>