mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 17:50:28 -04:00
15 lines
523 B
HTML
15 lines
523 B
HTML
{{ $svg := resources.Get "img/logo.svg" -}}
|
|
{{ $html := $svg.Content -}}
|
|
|
|
{{/* remove unneeded tags/attributes when SVG is inlined versus a .svg file */}}
|
|
{{ $html = replaceRE "<\\?xml.+\\?>" "" $html -}}
|
|
{{ $html = replaceRE " version=\"(.*?)\"" "" $html -}}
|
|
{{ $html = replaceRE " xmlns=\"(.*?)\"" "" $html -}}
|
|
|
|
{{ $wxh := printf "<svg width=\"%d\" height=\"%d\"" .width .height }}
|
|
|
|
{{ $html = replace $html "<svg" $wxh -}}
|
|
|
|
{{ printf "<!-- auto-inlined from: %s -->" $svg.Permalink | safeHTML }}
|
|
{{ $html | safeHTML -}}
|