feat: add logos

This commit is contained in:
Matthieu Bessat 2023-05-21 22:39:56 +02:00
parent 854da17109
commit 0b4efd59de
20 changed files with 257 additions and 14 deletions

View file

@ -0,0 +1,6 @@
{{ $svg := .path }}
{{ $match := `<svg (.*)>((\s|\S)*)</svg>` }}
{{ $replaceWith := printf `<svg class="%s" ${1}>${2}</svg>` .class }}
{{ $input := (printf "/assets/images/%s.svg" $svg | readFile) }}
{{ return (replaceRE $match $replaceWith $input | safeHTML) }}