5e105c9ff4
BREAKING CHANGE: Build-in icons are prefixed with `gdoc_` now. If you use build-in icons in e.g. menus you have to rename these references!
12 lines
517 B
HTML
12 lines
517 B
HTML
<div class="flex flex-wrap justify-center">
|
|
{{ range .Site.Data.sprites.geekdoc }}
|
|
<div class="flex flex-grid icon-grid">
|
|
<div class="flex align-center justify-center icon-grid__line">
|
|
<svg class="icon gdoc_{{ . }}"><use xlink:href="#gdoc_{{ . }}"></use></svg>
|
|
</div>
|
|
<div class="flex align-center justify-center icon-grid__line icon-grid__line--text">
|
|
<span>#gdoc_{{ (replace . "_" "_<wbr>") | safeHTML }}</span>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|