tag.ejs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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/tag.css">
  12. </head>
  13. <body>
  14. <%- include('header') %>
  15. <h1 style="display: flex; justify-content: center; padding: 10px; color: purple">
  16. <%= translate.selectByTag[lang] %>
  17. </h1>
  18. <div class="content">
  19. <div class="image-grid">
  20. <% data.forEach(item=> { %>
  21. <a href="<%= item.uri %>"><img src="<%= item.thumb %>"
  22. alt="<%= item.title %> | <%= translate.printableColoringPage[lang]%>"></a>
  23. <% }); %>
  24. </div>
  25. </div>
  26. <%- include('pagination') %>
  27. <div class="tag-cloud">
  28. <% tags.forEach(item=> { %>
  29. <a href="/<%= lang %>/tag/<%= item.tag %>" class="tag <%= item.tag == tag ? 'selected' : '' %>"
  30. style="color: <%= item.color %>;">
  31. <%= item.tag %>
  32. </a>
  33. <% }); %>
  34. </div>
  35. </body>
  36. </html>