index.ejs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <%- include('common-meta') %>
  5. <link rel="stylesheet" href="/stylesheets/styles.css">
  6. <link rel="stylesheet" href="/stylesheets/header.css">
  7. <script type="application/ld+json">
  8. {
  9. "@context": "https://schema.org",
  10. "@type": "WebPage",
  11. "name": "Art Number Coloring",
  12. "description": "<%= description %>",
  13. "url": "https://art.pcoloring.com",
  14. "mainEntityOfPage": "https://art.pcoloring.com",
  15. "publisher": {
  16. "@type": "Organization",
  17. "name": "JCCY",
  18. "logo": {
  19. "@type": "ImageObject",
  20. "url": "https://art.pcoloring.com/assets/icon/icon.webp"
  21. }
  22. },
  23. "image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/480/5cc659a98e671e1d51f4e72c.webp",
  24. "thumbnailUrl": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/320/5cc659a98e671e1d51f4e72c.webp",
  25. "subjectOf": "CreativeWork",
  26. "additionalType": "https://schema.org/CreativeWork",
  27. "contentRating": "General Audience",
  28. "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",
  29. "potentialAction": {
  30. "@type": "SearchAction",
  31. "target": "https://art.pcoloring.com/en/search?search={search_term}",
  32. "query-input": "required name=search_term"
  33. }
  34. }
  35. </script>
  36. </head>
  37. <!-- Google tag (gtag.js) -->
  38. <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
  39. <script>
  40. window.dataLayer = window.dataLayer || [];
  41. function gtag() { dataLayer.push(arguments); }
  42. gtag('js', new Date());
  43. gtag('config', 'G-JBGGVGLHTP');
  44. </script>
  45. <body>
  46. <%- include('header') %>
  47. <%- include('intro-section') %>
  48. <%- include('video-story-section') %>
  49. <%- include('latest-section') %>
  50. <%- include('album-section') %>
  51. <%- include('hot-section') %>
  52. <%- include('designer-section') %>
  53. <%- include('special-section') %>
  54. <%- include('footer') %>
  55. <%- include('cookie-banner') %>
  56. <div style="height: 50px;"></div>
  57. </body>
  58. </html>