| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="<%= lang %>">
- <head>
- <%- include('common-meta') %>
- <link rel="alternate" href="https://art.pcoloring.com/en/special" hrefLang="en" />
- <link rel="alternate" href="https://art.pcoloring.com/zh/special" hrefLang="zh" />
- <link rel="alternate" href="https://art.pcoloring.com/es/special" hrefLang="es" />
- <link rel="alternate" href="https://art.pcoloring.com/pt/special" hrefLang="pt" />
- <link rel="alternate" href="https://art.pcoloring.com/ja/special" hrefLang="ja" />
- <link rel="stylesheet" href="/stylesheets/styles.css">
- </head>
- <body>
- <%- include('header') %>
- <h1 style="display: flex; justify-content: center; padding: 10px; color: purple">
- <%= translate.special[lang] %>
- </h1>
- <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>
|