category.ejs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <%- include('common-meta') %>
  5. <link rel="alternate" href="https://art.pcoloring.com/en/category" hrefLang="en" />
  6. <link rel="alternate" href="https://art.pcoloring.com/zh/category" hrefLang="zh" />
  7. <link rel="alternate" href="https://art.pcoloring.com/es/category" hrefLang="es" />
  8. <link rel="alternate" href="https://art.pcoloring.com/pt/category" hrefLang="pt" />
  9. <link rel="alternate" href="https://art.pcoloring.com/ja/category" hrefLang="ja" />
  10. <link rel="stylesheet" href="/stylesheets/styles.css">
  11. <link rel="stylesheet" href="/stylesheets/category.css">
  12. </head>
  13. <body>
  14. <%- include('header') %>
  15. <div class="category">
  16. <% categories.forEach(item=> { %>
  17. <a href="/<%= lang %>/category/<%= item.id %>" class="<%= tag == item.id ? 'selected' : '' %>">
  18. <%= item[lang] %>
  19. </a>
  20. <% }); %>
  21. <a href="/<%= lang %>/tag" style="color: #ff4081">
  22. <%= translate.more[lang] %>>>>
  23. </a>
  24. </div>
  25. <div class="content">
  26. <div class="image-grid">
  27. <% data.forEach(item=> { %>
  28. <a href="<%= item.uri %>"><img src="<%= item.thumb %>"
  29. alt="<%= item.title %> | <%= translate.printableColoringPage[lang]%>"></a>
  30. <% }); %>
  31. </div>
  32. </div>
  33. <%- include('pagination') %>
  34. </body>
  35. </html>