lynx/layouts/shortcodes/icon.html

9 lines
256 B
HTML
Raw Permalink Normal View History

2024-05-01 13:17:15 +08:00
<span class="icon relative inline-block align-text-bottom">
2021-11-01 10:28:09 +08:00
{{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }}
{{ if $icon }}
{{ $icon.Content | safeHTML }}
{{ else }}
<em>{{ i18n "shortcode.icon_none" }}</em>
{{ end }}
</span>