category.ejs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 %>" alt="<%= item.name %>"></a>
  29. <% }); %>
  30. </div>
  31. </div>
  32. <%- include('pagination') %>
  33. </body>
  34. </html>