发评挂 RateLimiter comment;设置页支持品牌图上传/清除,并写入 favicon 与 og:image。 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
661 B
Cheetah
17 lines
661 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"/>
|
|
</head>
|
|
<body class="j13-body">
|
|
{{end}}
|