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:
parent
27a11e7b35
commit
edda3d1b51
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Redirecting...</title>
|
<title>Redirecting...</title>
|
||||||
<meta http-equiv="refresh" content="0;URL='{{url}}'">
|
<meta http-equiv="refresh" content="0; URL={{url}}">
|
||||||
<meta rel="canonical" href="{{url}}">
|
<meta rel="canonical" href="{{url}}">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in New Issue