5abc705eae
- web/: 产品官网(Hero 事件流终端、功能矩阵、架构、快速开始、下载、博客 + Markdown 详情页),青瓷绿双主题 - admin/: 内容管理(JWT 登录、文章分页/搜索/CRUD、草稿与发布),embed 挂 /admin - server/: Gin + GORM,MySQL(DSN 走 .env,SQLite 兜底);规范落地:sundynix_ 表前缀、字符串雪花主键、snake_case 列名、统一响应信封、公共分页参数 - 双 SPA embed 单二进制部署,make build 一键出包 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
951 B
HTML
27 lines
951 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/admin/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex" />
|
|
<title>sundynix admin — 内容管理</title>
|
|
<script>
|
|
// 避免主题闪烁:React 挂载前先落 dark class
|
|
;(function () {
|
|
var t = localStorage.getItem('sundynix-theme')
|
|
var dark =
|
|
t === 'dark' ||
|
|
((t === null || t === 'system') &&
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
if (dark) document.documentElement.classList.add('dark')
|
|
})()
|
|
</script>
|
|
<script type="module" crossorigin src="/admin/assets/index-B2HotWD6.js"></script>
|
|
<link rel="stylesheet" crossorigin href="/admin/assets/index-BFElCR1f.css">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|