| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!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">
- <link rel="stylesheet" href="/stylesheets/header.css">
- </head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag() { dataLayer.push(arguments); }
- gtag('js', new Date());
- gtag('config', 'G-JBGGVGLHTP');
- </script>
- <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>
|