Use seo_description instead of page.description

seo_description is used in  the meta tags but not in the ld+json
If page.description is not set, the the description at ld+json will be null.
This commit is contained in:
Carlos Garcés 2016-02-01 17:06:05 +01:00
parent aca4b60f48
commit f1e9b9acb1
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@
"headline": {{ page.title | jsonify }},
"image": {{ page.image | jsonify }},
"datePublished": {{ page.date | date_to_xmlschema | jsonify }},
"description": {{ page.description | jsonify }}
"description": {{ seo_description | jsonify }}
}
</script>
{% endif %}