index.ejs 811 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="<%= lang %>">
  3. <head>
  4. <%- include('common-meta') %>
  5. <link rel="alternate" href="https://art.pcoloring.com/en" hrefLang="en" />
  6. <link rel="alternate" href="https://art.pcoloring.com/zh" hrefLang="zh" />
  7. <link rel="alternate" href="https://art.pcoloring.com/es" hrefLang="es" />
  8. <link rel="alternate" href="https://art.pcoloring.com/pt" hrefLang="pt" />
  9. <link rel="alternate" href="https://art.pcoloring.com/ja" hrefLang="ja" />
  10. <link rel="stylesheet" href="/stylesheets/styles.css">
  11. </head>
  12. <body>
  13. <%- include('header') %>
  14. <%- include('banner') %>
  15. <%- include('latest-section') %>
  16. <%- include('album-section') %>
  17. <%- include('hot-section') %>
  18. <%- include('special-section') %>
  19. <%- include('footer') %>
  20. <div style="height: 50px;"></div>
  21. </body>
  22. </html>