lynx/layouts/partials/icon.html

7 lines
187 B
HTML
Raw Permalink Normal View History

2021-11-04 15:56:42 +08:00
{{ $icon := resources.Get (print "icons/" . ".svg") }}
{{ if $icon }}
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.Content | safeHTML }}
2021-11-04 15:56:42 +08:00
</span>
{{ end }}