|
@@ -14,6 +14,7 @@
|
|
|
<link rel="stylesheet" href="/stylesheets/header.css">
|
|
<link rel="stylesheet" href="/stylesheets/header.css">
|
|
|
<link rel="stylesheet" href="/stylesheets/category.css">
|
|
<link rel="stylesheet" href="/stylesheets/category.css">
|
|
|
|
|
|
|
|
|
|
+ <% if (data.length > 0) { %>
|
|
|
<script type="application/ld+json">
|
|
<script type="application/ld+json">
|
|
|
{
|
|
{
|
|
|
"@context": "https://schema.org",
|
|
"@context": "https://schema.org",
|
|
@@ -35,7 +36,7 @@
|
|
|
"keywords": "coloring pages categories, animal coloring page, plant coloring page, people coloring page, fantasy coloring page, famous coloring page, printable, free coloring pages, art, color by number, paint by number",
|
|
"keywords": "coloring pages categories, animal coloring page, plant coloring page, people coloring page, fantasy coloring page, famous coloring page, printable, free coloring pages, art, color by number, paint by number",
|
|
|
"contentRating": "General Audience",
|
|
"contentRating": "General Audience",
|
|
|
"hasPart": [
|
|
"hasPart": [
|
|
|
- <% for(let i = 0; i < 6; i++) { %>
|
|
|
|
|
|
|
+ <% for(let i = 0; i < Math.min(6, data.length); i++) { %>
|
|
|
{
|
|
{
|
|
|
"@type": "ImageObject",
|
|
"@type": "ImageObject",
|
|
|
"name": "<%= data[i].title %>",
|
|
"name": "<%= data[i].title %>",
|
|
@@ -44,12 +45,12 @@
|
|
|
"thumbnailUrl": "<%= data[i].thumb %>",
|
|
"thumbnailUrl": "<%= data[i].thumb %>",
|
|
|
"height": "480",
|
|
"height": "480",
|
|
|
"width": "480"
|
|
"width": "480"
|
|
|
- }<%= i < 5 ? ',' : '' %>
|
|
|
|
|
|
|
+ }<%= i < Math.min(6, data.length) - 1 ? ',' : '' %>
|
|
|
<% }; %>
|
|
<% }; %>
|
|
|
]
|
|
]
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
|
-
|
|
|
|
|
|
|
+ <% } %>
|
|
|
</head>
|
|
</head>
|
|
|
<!-- Google tag (gtag.js) -->
|
|
<!-- Google tag (gtag.js) -->
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
|