Files
memind/skills/page-template-resume/templates/resume-profile.html
T
john fde6503bdf
Memind CI / Test, build, and release guards (push) Has been cancelled
feat(mindspace): add SEO/GEO delivery, page template catalog, and admin hooks
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>
2026-08-10 08:06:12 +08:00

37 lines
1.9 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}}; }
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif; background: linear-gradient(135deg, #eef2ff, #f8fafc); color: #0f172a; min-height: 100vh; padding: 32px 20px; }
.sheet { max-width: 780px; margin: 0 auto; background: #fff; border-radius: 24px; padding: clamp(32px, 5vw, 48px); box-shadow: 0 24px 80px rgba(29,78,216,.1); border: 1px solid rgba(29,78,216,.06); }
.header { border-bottom: 2px solid var(--accent); padding-bottom: 24px; margin-bottom: 28px; }
h1 { margin: 0; font-size: clamp(32px, 5vw, 42px); font-weight: 800; letter-spacing: -.02em; }
.role { color: var(--accent); font-weight: 700; font-size: 18px; margin: 8px 0 16px; }
.summary { color: #475569; line-height: 1.75; margin: 0; font-size: 16px; }
.section { margin-bottom: 28px; }
.section h2 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; font-weight: 800; }
.section p { margin: 0 0 10px; line-height: 1.7; color: #334155; }
footer { text-align: center; padding: 32px 24px; color: #94a3b8; font-size: 13px; }
</style>
</head>
<body>
<article class="sheet">
<header class="header">
<h1>{{FULL_NAME}}</h1>
<p class="role">{{JOB_TITLE}}</p>
<p class="summary">{{SUMMARY}}</p>
</header>
<div class="section">{{EXPERIENCE_HTML}}</div>
<div class="section">{{SKILLS_HTML}}</div>
</article>
<footer><p data-mindspace-page-tag="platform-brand">TKMind · 智趣</p></footer>
</body>
</html>