|
|
@@ -182,8 +182,8 @@
|
|
|
{
|
|
|
"@context": "https://schema.org",
|
|
|
"@type": "CollectionPage",
|
|
|
- "name": "<%= title %>",
|
|
|
- "description": "<%= description %>",
|
|
|
+ "name": <%- JSON.stringify(title || '') %>,
|
|
|
+ "description": <%- JSON.stringify(description || '') %>,
|
|
|
"url": "https://art.pcoloring.com<%= uri %>",
|
|
|
"mainEntity": {
|
|
|
"@type": "ItemList",
|
|
|
@@ -194,12 +194,12 @@
|
|
|
"position": <%= index+1 %>,
|
|
|
"item": {
|
|
|
"@type": "CreativeWork",
|
|
|
- "name": "<%= item.title %>",
|
|
|
+ "name": <%- JSON.stringify(item.title || '') %>,
|
|
|
"url": "https://art.pcoloring.com<%= item.uri %>",
|
|
|
"image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/480/<%= item._id %>.webp",
|
|
|
"author": {
|
|
|
"@type": "Person",
|
|
|
- "name": "<%= item.user.username %>"
|
|
|
+ "name": <%- JSON.stringify((item.user && item.user.username) || '') %>
|
|
|
}
|
|
|
}
|
|
|
}<% if(index < data.contents.length - 1){ %>, <%}%>
|