fde6503bdf
Memind CI / Test, build, and release guards (push) Has been cancelled
Enable optional SEO/GEO injection and discovery routes for confirmed public pages while keeping private pages noindex. Add premium page template skills, portal catalog API, template shop UI, and Baidu push gated by memind_adm config. Co-authored-by: Cursor <cursoragent@cursor.com>
35 lines
2.1 KiB
HTML
35 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{PAGE_TITLE}}</title><meta name="description" content="{{PAGE_DESCRIPTION}}">
|
|
<meta name="mindspace-cover" content='{{MINDSPACE_COVER_JSON}}'>
|
|
<style>
|
|
:root { --accent: {{ACCENT}}; --accent2: {{ACCENT2}}; }
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif; background: linear-gradient(165deg, #1a0a2e, #0f0f14); color: #f1f5f9; }
|
|
.hero { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 40px); align-items: center; padding: clamp(40px, 8vw, 72px) 24px; max-width: 880px; margin: 0 auto; }
|
|
.cover { width: clamp(140px, 28vw, 220px); aspect-ratio: 1; border-radius: 20px; object-fit: cover; box-shadow: 0 24px 64px rgba(139,92,246,.3); }
|
|
h1 { margin: 0 0 8px; font-size: clamp(28px, 5vw, 40px); font-weight: 800; }
|
|
.tagline { margin: 0; color: #a78bfa; font-size: 16px; font-weight: 600; }
|
|
main { max-width: 880px; margin: 0 auto; padding: 0 24px 64px; }
|
|
.episodes { margin-bottom: 40px; }
|
|
.episodes h2 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); margin: 0 0 20px; }
|
|
.episode { padding: 20px; background: rgba(255,255,255,.05); border-radius: 16px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,.06); }
|
|
.subscribe { text-align: center; padding: 32px; background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(99,102,241,.1)); border-radius: 20px; }
|
|
footer { text-align: center; padding: 32px; color: #64748b; font-size: 13px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="hero">
|
|
<img class="cover" src="{{COVER_IMAGE}}" alt="{{SHOW_NAME}}">
|
|
<div><h1>{{SHOW_NAME}}</h1><p class="tagline">{{SHOW_TAGLINE}}</p></div>
|
|
</header>
|
|
<main>
|
|
<div class="episodes">{{EPISODES_HTML}}</div>
|
|
<div class="subscribe">{{SUBSCRIBE_HTML}}</div>
|
|
</main>
|
|
<footer><p data-mindspace-page-tag="platform-brand">TKMind · 智趣</p></footer>
|
|
</body>
|
|
</html>
|