Update index.hbs
Trailing slash on void elements has no effect and interacts badly with unquoted attribute values.
This commit is contained in:
parent
c642f5f8a3
commit
3389f3db7f
|
@ -5,7 +5,7 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
{{#if is_print }}
|
{{#if is_print }}
|
||||||
<meta name="robots" content="noindex" />
|
<meta name="robots" content="noindex">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{#if base_url}}
|
{{#if base_url}}
|
||||||
<base href="{{ base_url }}">
|
<base href="{{ base_url }}">
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
<meta name="description" content="{{ description }}">
|
<meta name="description" content="{{ description }}">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="theme-color" content="#ffffff" />
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
{{#if favicon_svg}}
|
{{#if favicon_svg}}
|
||||||
<link rel="icon" href="{{ path_to_root }}favicon.svg">
|
<link rel="icon" href="{{ path_to_root }}favicon.svg">
|
||||||
|
|
Loading…
Reference in New Issue