matrix-spec/layouts/partials/favicons.html
Kévin Commaille e6d655beaf
Remove trailing slash on void HTML elements
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 12:20:03 +01:00

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