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>
|
||||
<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>
|
||||
|
|
Loading…
Reference in New Issue