落墨青冷纸 token 与设计规格,重绘顶栏/三栏/Feed/帖详情壳层并同步暗色。 Co-authored-by: Cursor <cursoragent@cursor.com>
18 lines
755 B
Cheetah
18 lines
755 B
Cheetah
{{define "base/head"}}
|
||
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
<title>{{.Title}}</title>
|
||
{{if .Description}}<meta name="description" content="{{.Description}}"/>{{end}}
|
||
{{if .FaviconURL}}<link rel="icon" href="{{.FaviconURL}}"/>{{end}}
|
||
<meta property="og:title" content="{{.Title}}"/>
|
||
{{if .Description}}<meta property="og:description" content="{{.Description}}"/>{{end}}
|
||
{{if .OGImageURL}}<meta property="og:image" content="{{.OGImageURL}}"/>{{end}}
|
||
<link rel="stylesheet" href="/ssr-assets/site.css"/>
|
||
{{/* 西文优先 IBM Plex(本机有则用);见 10-design-system,不外链 CDN */}}
|
||
</head>
|
||
<body class="j13-body">
|
||
{{end}}
|