mirror of
https://github.com/facundoolano/jorge.git
synced 2024-12-25 21:58:28 +01:00
remove unnecessary xml escaping from templates
This commit is contained in:
parent
add8a7d6c3
commit
dd94738555
2 changed files with 6 additions and 6 deletions
|
@ -23,9 +23,9 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.excerpt %}
|
{% if page.excerpt %}
|
||||||
<meta name="description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="description" content="{{ page.excerpt }}">
|
||||||
<meta name="og:description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="og:description" content="{{ page.excerpt }}">
|
||||||
<meta name="twitter:description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="twitter:description" content="{{ page.excerpt }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.layout == "post" %}
|
{% if page.layout == "post" %}
|
||||||
|
|
|
@ -23,9 +23,9 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.excerpt %}
|
{% if page.excerpt %}
|
||||||
<meta name="description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="description" content="{{ page.excerpt }}">
|
||||||
<meta name="og:description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="og:description" content="{{ page.excerpt }}">
|
||||||
<meta name="twitter:description" content="{{ page.excerpt | strip_html | xml_escape }}">
|
<meta name="twitter:description" content="{{ page.excerpt }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.layout == "post" %}
|
{% if page.layout == "post" %}
|
||||||
|
|
Loading…
Reference in a new issue