| 1234567891011121314151617181920212223242526272829303132333435 |
- <!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.title %> | <%= translate.printableColoringPage[lang] %>"></a>
- <% }); %>
- </div>
- </div>
- <%- include('pagination') %>
- </body>
- </html>
|