index.ejs 848 B

123456789101112131415161718192021222324252627
  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('designer-section') %>
  19. <%- include('special-section') %>
  20. <%- include('footer') %>
  21. <div style="height: 50px;"></div>
  22. </body>
  23. </html>