index.ejs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <link rel="stylesheet" href="/stylesheets/header.css">
  12. </head>
  13. <!-- Google tag (gtag.js) -->
  14. <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
  15. <script>
  16. window.dataLayer = window.dataLayer || [];
  17. function gtag() { dataLayer.push(arguments); }
  18. gtag('js', new Date());
  19. gtag('config', 'G-JBGGVGLHTP');
  20. </script>
  21. <body>
  22. <%- include('header') %>
  23. <!-- <%- include('banner') %> -->
  24. <%- include('latest-section') %>
  25. <%- include('album-section') %>
  26. <%- include('hot-section') %>
  27. <%- include('designer-section') %>
  28. <%- include('special-section') %>
  29. <%- include('footer') %>
  30. <%- include('cookie-banner') %>
  31. <div style="height: 50px;"></div>
  32. </body>
  33. </html>