| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="<%= lang %>">
- <head>
- <%- include('common-meta') %>
- <link rel="alternate" href="https://art.pcoloring.com/en/category" hrefLang="en" />
- <link rel="alternate" href="https://art.pcoloring.com/zh/category" hrefLang="zh" />
- <link rel="alternate" href="https://art.pcoloring.com/es/category" hrefLang="es" />
- <link rel="alternate" href="https://art.pcoloring.com/pt/category" hrefLang="pt" />
- <link rel="alternate" href="https://art.pcoloring.com/ja/category" hrefLang="ja" />
- <link rel="stylesheet" href="/stylesheets/styles.css">
- <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="/<%= item.uri %>"><img src="<%= item.thumb %>" alt="<%= item.name %>"></a>
- <% }); %>
- </div>
- </div>
- <%- include('pagination') %>
- </body>
- </html>
|