| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <%- include('head') %>
- <link rel="stylesheet" href="/stylesheets/category.css">
- </head>
- <body>
- <%- include('header') %>
- <div class="category">
- <% categories.forEach(item => { %>
- <a href="/<%= lang %>/category/<%= item.id %>" class="<%= tag == item.id ? 'selected' : '' %>"><%= item[lang] %></a>
- <% }); %>
- <a href="/<%= lang %>/tag" style="color: #ff4081"><%= translate.more[lang] %>>>></a>
- </div>
-
- <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>
|