mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-01 02:40:41 +00:00
Robert Kaussow
3ccc8918bb
BREAKING CHANGE: The class `.icon` was renamed to `.gblog-icon` to avoid conflicts.
13 lines
514 B
HTML
13 lines
514 B
HTML
<div class="flex flex-wrap justify-center">
|
|
{{ range $key, $value := .Site.Data.sprites.geekblog }}
|
|
<div class="flex flex-grid icon-grid">
|
|
<div class="flex align-center justify-center icon-grid__line">
|
|
<svg class="gblog-icon {{ $key }}"><use xlink:href="#{{ $key }}"></use></svg>
|
|
</div>
|
|
<div class="flex align-center justify-center icon-grid__line icon-grid__line--text">
|
|
<span>#{{ (replace $key "_" "_<wbr>") | safeHTML }}</span>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|