special.ejs 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <%- include('common-meta') %>
  5. <link rel="alternate" href="https://art.pcoloring.com/en/special" hrefLang="en" />
  6. <link rel="alternate" href="https://art.pcoloring.com/zh/special" hrefLang="zh" />
  7. <link rel="alternate" href="https://art.pcoloring.com/es/special" hrefLang="es" />
  8. <link rel="alternate" href="https://art.pcoloring.com/pt/special" hrefLang="pt" />
  9. <link rel="alternate" href="https://art.pcoloring.com/ja/special" hrefLang="ja" />
  10. <link rel="stylesheet" href="/stylesheets/styles.css">
  11. </head>
  12. <body>
  13. <%- include('header') %>
  14. <h1 style="display: flex; justify-content: center; padding: 10px; color: purple">
  15. <%= translate.special[lang] %>
  16. </h1>
  17. <div class="content">
  18. <div class="image-grid">
  19. <% data.forEach(item=> { %>
  20. <a href="/<%= item.uri %>"><img src="<%= item.thumb %>" alt="<%= item.name %>"></a>
  21. <% }); %>
  22. </div>
  23. </div>
  24. <%- include('pagination') %>
  25. </body>
  26. </html>