tag.ejs 1.7 KB

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