Files
lynx/layouts/partials/icon.html

7 lines
187 B
HTML
Raw Normal View History

2021-11-04 18:56:42 +11:00
{{ $icon := resources.Get (print "icons/" . ".svg") }}
{{ if $icon }}
<span class="relative inline-block align-text-bottom icon">
2021-11-01 13:28:09 +11:00
{{ $icon.Content | safeHTML }}
2021-11-04 18:56:42 +11:00
</span>
{{ end }}