According to the W3C's HTML validator, trailing slashes in void-element have no effect, and might interact badly in some cases. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
11 lines
306 B
HTML
11 lines
306 B
HTML
{{- /*
|
|
|
|
A modified version of the favicons.html partial in Docsy.
|
|
|
|
*/ -}}
|
|
|
|
{{- $ico := resources.Get "icons/favicon.ico" -}}
|
|
{{- $svg := resources.Get "icons/favicon.svg" -}}
|
|
|
|
<link rel="shortcut icon" href="{{ $ico.RelPermalink }}">
|
|
<link rel="icon" type="image/svg+xml" href="{{ $svg.RelPermalink }}">
|