This repository has been archived on 2026-05-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blowfish/exampleSite/layouts/shortcodes/icon-ref.html
T
2026-02-07 23:20:39 +08:00

19 lines
411 B
HTML

{{ $icons := resources.Match "icons/*.svg" }}
<table>
<thead>
<tr>
<th>Icon name</th>
<th>Preview</th>
</tr>
</thead>
<tbody>
{{ range resources.Match "icons/*.svg" }}
{{ $name := strings.TrimSuffix ".svg" (path.Base .Name) }}
<tr>
<td><code>{{ $name }}</code></td>
<td>{{ partial "icon.html" $name }}</td>
</tr>
{{ end }}
</tbody>
</table>