special.ejs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <%- include('common-meta') %>
  5. <link rel="alternate" href="https://art.pcoloring.com/en/special" hrefLang="en" />
  6. <link rel="alternate" href="https://art.pcoloring.com/zh/special" hrefLang="zh" />
  7. <link rel="alternate" href="https://art.pcoloring.com/es/special" hrefLang="es" />
  8. <link rel="alternate" href="https://art.pcoloring.com/pt/special" hrefLang="pt" />
  9. <link rel="alternate" href="https://art.pcoloring.com/ja/special" hrefLang="ja" />
  10. <link rel="stylesheet" href="/stylesheets/styles.css">
  11. <link rel="stylesheet" href="/stylesheets/header.css">
  12. </head>
  13. <!-- Google tag (gtag.js) -->
  14. <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
  15. <script>
  16. window.dataLayer = window.dataLayer || [];
  17. function gtag() { dataLayer.push(arguments); }
  18. gtag('js', new Date());
  19. gtag('config', 'G-JBGGVGLHTP');
  20. </script>
  21. <body>
  22. <%- include('header') %>
  23. <h1 style="display: flex; justify-content: center; padding: 10px; color: purple">
  24. <%= translate.special[lang] %>
  25. </h1>
  26. <div class="content">
  27. <div class="image-grid">
  28. <% data.forEach(item=> { %>
  29. <a href="<%= item.uri %>"><img src="<%= item.thumb %>"
  30. alt="<%= item.title %> | <%= translate.printableColoringPage[lang] %>"></a>
  31. <% }); %>
  32. </div>
  33. </div>
  34. <%- include('pagination') %>
  35. </body>
  36. </html>