27 lines
1.1 KiB
Cheetah
27 lines
1.1 KiB
Cheetah
{{ define "index" -}}
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head prefix="og: https://ogp.me/ns#">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="author" content="{{ .Config.Author }}">
|
|
<meta property="og:site_name" content="{{ .Config.Title }}">
|
|
<meta property="og:locale" content="zh-CN">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:url" content="{{ print .Config.URL .URI }}">
|
|
{{- $title := .Config.Title }}{{ if .SubTitle }}{{ $title = print .SubTitle " - " .Config.Title }}{{ end }}
|
|
<title>{{ $title }}</title>
|
|
<meta property="og:title" content="{{ $title }}">
|
|
{{- $desc := .Config.Desc }}{{ if and (ne .TargetPost nil) .TargetPost.FM.Summary }}{{ $desc = .TargetPost.FM.Summary }}{{ end }}
|
|
<meta name="description" property="og:description" content="{{ $desc }}">
|
|
{{ range .Config.HeadTag }}{{ . }}{{ end }}
|
|
{{ "base" | .RenderStyle }}
|
|
</head>
|
|
<body>
|
|
{{- .Header }}
|
|
{{- .Body }}
|
|
{{- .Footer }}
|
|
</body>
|
|
</html>
|
|
{{- end }}
|