blowfish/layouts/partials/icon.html

7 lines
160 B
HTML
Raw Normal View History

2022-09-10 14:05:37 -05:00
{{ $icon := resources.Get (print "icons/" . ".svg") }}
{{ if $icon }}
2022-11-17 04:05:20 -06:00
<span class="relative icon p-2">
2022-09-10 14:05:37 -05:00
{{ $icon.Content | safeHTML }}
</span>
{{ end }}