对齐 SPA 顶栏工具条与清青强调色,CSS/JS 带构建 ?v= 长缓存穿透。 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
681 B
Cheetah
17 lines
681 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?v={{.AssetVersion}}"/>
|
|
</head>
|
|
<body class="j13-body">
|
|
{{end}}
|