mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
13 lines
507 B
HTML
13 lines
507 B
HTML
{{- $admonitionIcons := dict
|
|
"warning" "exclamation-triangle"
|
|
"note" "information-circle"
|
|
"tip" "light-bulb"
|
|
"caution" "fire"
|
|
"important" "key" }}
|
|
{{- range $admonition, $icon := $admonitionIcons }}
|
|
{{- $res := resources.ExecuteAsTemplate (printf "icons/asciidoctor/%s.svg" $admonition)
|
|
(dict "id" $icon "name" $admonition)
|
|
(resources.Get "templates/heroicon.svg") }}
|
|
{{- $res.Publish }}
|
|
{{- end }}
|