docs-matrix-spec/layouts/partials/favicons.html
Kévin Commaille c16788f991
Remove trailing slash on void HTML elements (#2009)
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>
2024-11-20 18:21:25 -05:00

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 }}">