| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" href="/assets/icon/favicon.ico" type="image/x-icon">
- <title><%= title %></title>
- <meta name="description" content="<%= description %>">
- <meta property="og:title" content="<%= title %>">
- <meta property="og:description" content="<%= description %>">
- <meta property="og:image" content="<%= data.cover %>">
- <meta property="og:type" content="website">
- <!-- MARK: Universal Link / Android App Link 的核心配置 -->
- <!-- 这些 meta 标签的值应该是完整的 HTTPS 链接,Facebook 会识别并尝试拉起 App -->
- <meta property="og:url" content="<%= applink %>" />
- <!-- **Universal Link 路径** -->
- <meta property="al:ios:url" content="<%= applink %>" />
- <!-- **Universal Link 路径** -->
- <meta property="al:ios:app_store_id" content="1575480118" /> <!-- **iOS App Store ID** -->
- <meta property="al:ios:app_name" content="Art Number Coloring Book" /> <!-- **iOS 应用名称** -->
- <meta property="al:android:package" content="com.pcoloring.art.puzzle.color.by.number" /> <!-- **Android 包名** -->
- <meta property="al:android:url" content="<%= applink %>>" />
- <!-- ** Universal Link 路径** -->
- <meta property="al:android:app_name" content="Art Number Coloring Book" /> <!-- **Android 应用名称** -->
- <meta name="apple-itunes-app" content="app-id=1575480118">
-
- <link rel="stylesheet" href="/stylesheets/v2/styles.css">
- <style>
- h1 {
- text-align: start;
- }
- p {
- font-size: 1.1rem;
- }
- .breadcrumb {
- margin: 20px 0;
- font-size: 1.0rem;
- color: var(--light-text);
- }
- .breadcrumb a {
- color: var(--primary-color);
- text-decoration: none;
- }
- .breadcrumb a:hover {
- text-decoration: underline;
- }
- .poster-image {
- margin-bottom: 20px;
- }
- .poster-image img {
- width: 100%;
- height: 100%;
- max-height: 350px;
- object-fit: cover;
- border-radius: 8px;
- }
- .gallery-link {
- text-align: center;
- margin-top: 30px;
- font-size: 1.2rem;
- }
- .gallery-link a {
- color: var(--primary-color);
- text-decoration: none;
- font-weight: 600;
- display: inline-flex;
- align-items: center;
- }
- .gallery-link a:hover {
- text-decoration: underline;
- }
- .gallery-link svg {
- margin-left: 8px;
- width: 16px;
- height: 16px;
- }
- .how-to-title {
- color: var(--text-color);
- font-size: 1.8rem;
- margin-bottom: 30px;
- text-align: start;
- }
- .how-to-steps {
- display: grid;
- grid-template-columns: 1fr;
- gap: 30px;
- }
- .how-to-step {
- padding: 25px;
- border-radius: 10px;
- border: 1px solid #eee;
- transition: all 0.3s ease;
- }
- .how-to-step:hover {
- transform: translateY(-5px);
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
- }
- .step-header {
- display: flex;
- align-items: center;
- margin-bottom: 15px;
- }
- .step-number {
- width: 40px;
- height: 40px;
- background-color: var(--primary-color);
- color: white;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 1.2rem;
- font-weight: 700;
- margin-right: 15px;
- }
- .step-title {
- font-size: 1.3rem;
- font-weight: 600;
- color: var(--text-color);
- }
- ul {
- padding: 20px;
- }
- ul li {
- padding: 10px;
- }
- li a {
- font-size: 1.2rem;
- color: var(--secondary-color)
- }
- @media (max-width: 768px) {
- .gallery-link {
- font-size: 1rem;
- }
- .how-to-section {
- padding: 25px;
- }
- .how-to-title {
- font-size: 1.5rem;
- }
- .step-title {
- font-size: 1.2rem;
- }
- }
- </style>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "CollectionPage",
- "name": "<%= title %>",
- "description": "<%= description %>",
- "url": "https://art.pcoloring.com/<%= uri %>",
- "mainEntity": {
- "@type": "ItemList",
- "itemListElement": [
- <% data.contents.forEach((item, index)=> { %>
- {
- "@type": "ListItem",
- "position": <%= index+1 %>,
- "item": {
- "@type": "CreativeWork",
- "name": "<%= item.title %>",
- "url": "https://art.pcoloring.com<%= item.uri %>",
- "image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/page/480/<%= item._id %>.webp",
- "author": {
- "@type": "Person",
- "name": "<%= item.user.username %>"
- }
- }
- }<% if(index < data.contents.length - 1){ %>, <%}%>
- <% }); %>
- ]
- }
- }
- </script>
- <script type='text/javascript'
- src='https://platform-api.sharethis.com/js/sharethis.js#property=685036ce6c1ae8001abaded7&product=sop'
- async='async'></script>
- </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') %>
- <main class="container">
- <div class="breadcrumb">
- <a href="/">Home</a> > <a href="/coloring-page-albums">Coloring Pages Albums</a> > <%= data.title%>
- </div>
- <section>
- <h1><%= data.title%></h1>
- <h4 style="margin-bottom: 40px;">By Art Number Coloring / <%=data.timeCreate%></h4>
- <div class="poster-image">
- <img src="<%= data.cover %>" alt="<%= data.title%>">
- </div>
- <p><%= data.slogon %></p>
- </section>
- <section>
- <h2>
- <%= data.title %>
- </h2>
- <div class="coloring-grid">
- <% data.contents.forEach(item=> { %>
- <div class="coloring-card">
- <div data-content-id="<%= item._id %>" class="coloring-image">
- <a href="<%= item.uri %>"><img src="<%= item.thumb %>" alt="<%= item.title %>"></a>
- </div>
- <div class="coloring-content">
- <div class="coloring-title">
- <%= item.title %>
- </div>
- <div class="coloring-author">by <a href="/coloring-page-gallery?author=<%= item.user.username %>">
- <%= item.user.username %>
- </a></div>
- <div class="coloring-meta">
- <div class="date">
- <%= item.publishTime %>
- </div>
- <div class="views">
- <%= item.totalStartCount ? item.totalStartCount : 0 %>
- </div>
- </div>
- <div class="coloring-tags">
- <% item.tags.forEach(tag=> { %>
- <a href="/coloring-page-gallery?category=<%= tag %>"><span class="tag" data-tag="<%= tag %>">
- <%= tag %>
- </span></a>
- <% }); %>
- </div>
- </div>
- </div>
- <% }); %>
- </div>
- <div class="gallery-link">
- <a href="/coloring-page-gallery?category=<%= data.tag%>">
- More coloring pages please visit: <strong style="margin-left: 10px;"> Coloring Page Gallery</strong>.
- <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M13 5L19 12L13 19" stroke="currentColor" stroke-width="2" stroke-linecap="round"
- stroke-linejoin="round" />
- </svg>
- </a>
- </div>
- </section>
- <%- include('tips-get-use-of-our-coloring-pages') %>
- <%- include('comment') %>
- </main>
- <%- include('footer') %>
- <script src="/scripts/script.js"></script>
- <script src="/scripts/progress2.js"></script>
- </body>
- </html>
|