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>
33 lines
2.0 KiB
HTML
33 lines
2.0 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}}; --bg: #0a0c10; --card: #141820; --border: #252d3d; }
|
|
* { box-sizing: border-box; }
|
|
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif; background: var(--bg); color: #e8ecf4; min-height: 100vh; }
|
|
.intro { text-align: center; padding: clamp(48px, 10vw, 88px) 24px 32px; }
|
|
h1 { margin: 0 0 10px; font-size: clamp(32px, 6vw, 48px); font-weight: 800; letter-spacing: -.03em; background: linear-gradient(135deg, #fff 30%, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
|
|
.lead { color: #94a3b8; margin: 0; font-size: 17px; letter-spacing: .04em; }
|
|
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 1040px; margin: 0 auto; padding: 0 24px 64px; }
|
|
.card { background: var(--card); border-radius: 20px; padding: 24px; border: 1px solid var(--border); transition: transform .25s, border-color .25s, box-shadow .25s; }
|
|
.card h3 { margin: 0 0 10px; font-size: 18px; color: #fff; }
|
|
.card p { margin: 0; color: #94a3b8; line-height: 1.65; font-size: 15px; }
|
|
.card .tag { display: inline-block; margin-top: 14px; font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
|
|
footer { text-align: center; padding: 32px 24px 48px; color: #64748b; font-size: 13px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header class="intro">
|
|
<h1>{{CREATOR_NAME}}</h1>
|
|
<p class="lead">{{CREATOR_TAGLINE}}</p>
|
|
</header>
|
|
<main><div class="grid">{{PROJECT_CARDS_HTML}}</div></main>
|
|
<footer><p data-mindspace-page-tag="platform-brand">TKMind · 智趣</p></footer>
|
|
</body>
|
|
</html>
|