Fix formatting of content attr in <meta http-equiv=refresh>

According to the HTML specification[1], there needs to be a space after the
semicolon and the URL must be unquoted.

[1]: https://html.spec.whatwg.org/multipage/semantics.html#attr-meta-http-equiv-refresh
This commit is contained in:
Aman Verma 2022-11-12 14:47:21 -06:00
parent 27a11e7b35
commit edda3d1b51
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;URL='{{url}}'">
<meta http-equiv="refresh" content="0; URL={{url}}">
<meta rel="canonical" href="{{url}}">
</head>
<body>