| 123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="<%= lang %>">
- <head>
- <%- include('common-meta') %>
- <link rel="alternate" href="https://art.pcoloring.com/en" hrefLang="en" />
- <link rel="alternate" href="https://art.pcoloring.com/zh" hrefLang="zh" />
- <link rel="alternate" href="https://art.pcoloring.com/es" hrefLang="es" />
- <link rel="alternate" href="https://art.pcoloring.com/pt" hrefLang="pt" />
- <link rel="alternate" href="https://art.pcoloring.com/ja" hrefLang="ja" />
- <link rel="stylesheet" href="/stylesheets/styles.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') %>
- <%- include('banner') %>
- <%- include('latest-section') %>
- <%- include('album-section') %>
- <%- include('hot-section') %>
- <%- include('designer-section') %>
- <%- include('special-section') %>
- <%- include('footer') %>
- <div style="height: 50px;"></div>
- </body>
- </html>
|