special.ejs 525 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <%- include('head') %>
  5. </head>
  6. <body>
  7. <%- include('header') %>
  8. <h1 style="display: flex; justify-content: center; padding: 10px; color: purple"><%= translate.special[lang] %></h1>
  9. <div class="content">
  10. <div class="image-grid">
  11. <% data.forEach(item => { %>
  12. <a href="/<%= lang %>/detail/<%= item._id %>"><img src="<%= item.thumb %>" alt="<%= item.name %>" ></a>
  13. <% }); %>
  14. </div>
  15. </div>
  16. <%- include('pagination') %>
  17. </body>
  18. </html>