d256e7ac85
- tokens.css/site.css 逐值对齐原型设计系统,icons 雪碧图,零外链;首页/下载/帮助/法务全站重皮肤,真实截图 - 注册与登录在官网内完成(写 shared_preferences_web 兼容 localStorage,不再跳 App) - 价格区四档:免费/标准 299/高级 599/定制;登录后标准/高级按钮变「购买 / 续费」 - 新增 /checkout/(套餐+月付年付切换)与 /license/result/(支付回跳轮询到账) - 登录页支持 ?next= 站内回跳;二维码措辞改「扫码看详情可分享」 - 下载页构建期真实下载链接+运行时 release 刷新;旧 features 页/死 CSS/dist 产物清理 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JJ1g8XV1YhhmHRzhwWEW7o
28 lines
1.0 KiB
Plaintext
28 lines
1.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light" />
|
|
<title>{% if title %}{{ title }} · {% endif %}{{ site.name }}</title>
|
|
{% if description %}<meta name="description" content="{{ description }}" />{% endif %}
|
|
{# 真相源:tokens.css = App 原型 tokens.css 主题A 拷贝;site.css 镜像 atoms.css。
|
|
全站零外链(无 Google Fonts / unpkg):字体走系统栈(与 App 真机一致),图标走内联雪碧图。 #}
|
|
<link rel="stylesheet" href="/assets/tokens.css" />
|
|
<link rel="stylesheet" href="/assets/site.css" />
|
|
{% if pageExtraCss %}<link rel="stylesheet" href="{{ pageExtraCss }}" />{% endif %}
|
|
<link rel="icon" href="/assets/logo-mark.svg" type="image/svg+xml" />
|
|
{% if pageStyle %}<style>{{ pageStyle | safe }}</style>{% endif %}
|
|
</head>
|
|
<body>
|
|
{% include "icons.njk" %}
|
|
{% include "nav.njk" %}
|
|
|
|
{{ content | safe }}
|
|
|
|
{% include "footer.njk" %}
|
|
|
|
<script src="/assets/nav.js"></script>
|
|
</body>
|
|
</html>
|