index.ejs 2.7 KB

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