| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="<%= lang %>">
- <head>
- <%- include('common-meta') %>
- <link rel="alternate" href="https://art.pcoloring.com/en/tag" hrefLang="en" />
- <link rel="alternate" href="https://art.pcoloring.com/zh/tag" hrefLang="zh" />
- <link rel="alternate" href="https://art.pcoloring.com/es/tag" hrefLang="es" />
- <link rel="alternate" href="https://art.pcoloring.com/pt/tag" hrefLang="pt" />
- <link rel="alternate" href="https://art.pcoloring.com/ja/tag" hrefLang="ja" />
- <link rel="stylesheet" href="/stylesheets/styles.css">
- <link rel="stylesheet" href="/stylesheets/tag.css">
- </head>
- <body>
- <%- include('header') %>
- <div class="tag-cloud">
- <% tags.forEach(item=> { %>
- <a href="/<%= lang %>/tag/<%= item.tag %>" class="tag <%= item.tag == tag ? 'selected' : '' %>" style="color: <%= item.color %>;"><%= item.tag %></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>
|