| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="<%= lang %>">
- <head>
- <%- include('common-meta') %>
- <link rel="alternate" href="https://art.pcoloring.com" hrefLang="x-default" />
- <link rel="stylesheet" href="/stylesheets/styles.css">
- <link rel="stylesheet" href="/stylesheets/header.css">
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "WebPage",
- "name": "Art Number Coloring",
- "description": "<%= description %>",
- "url": "https://art.pcoloring.com",
- "mainEntityOfPage": "https://art.pcoloring.com",
- "publisher": {
- "@type": "Organization",
- "name": "JCCY",
- "logo": {
- "@type": "ImageObject",
- "url": "https://art.pcoloring.com/assets/icon/icon.webp"
- }
- },
- "image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/480/5cc659a98e671e1d51f4e72c.webp",
- "thumbnailUrl": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/320/5cc659a98e671e1d51f4e72c.webp",
- "subjectOf": "CreativeWork",
- "additionalType": "https://schema.org/CreativeWork",
- "contentRating": "General Audience",
- "keywords": "Coloring pages, Free Coloring pages, Coloring pages printable, Coloring pages for adults, Coloring pages for kids, Coloring pages for girls, Coloring pages for teens",
- "potentialAction": {
- "@type": "SearchAction",
- "target": "https://art.pcoloring.com/en/search?search={search_term}",
- "query-input": "required name=search_term"
- }
- }
- </script>
- </head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag() { dataLayer.push(arguments); }
- gtag('js', new Date());
- gtag('config', 'G-JBGGVGLHTP');
- </script>
- <body>
- <%- include('header') %>
- <%- include('intro-section') %>
- <%- include('latest-section') %>
- <%- include('album-section') %>
- <%- include('hot-section') %>
- <%- include('designer-section') %>
- <%- include('special-section') %>
- <%- include('footer') %>
- <%- include('cookie-banner') %>
- <div style="height: 50px;"></div>
- </body>
- </html>
|