| 123456789101112131415161718192021222324 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <%- include('head') %>
- </head>
- <body>
- <%- include('header') %>
- <div class="content">
- <div class="image-grid">
- <% data.forEach(item => { %>
- <a href="/<%= lang %>/detail/<%= item._id %>"><img src="<%= item.thumb %>" alt="<%= item.name %>" ></a>
- <% }); %>
- </div>
- </div>
- <%- include('pagination') %>
- </body>
- </html>
|