Files
SWebStatic/layouts/_default/baseof.html
T
2026-07-08 17:41:38 +08:00

23 lines
908 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.Language.Locale }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} — {{ .Site.Title }}{{ end }}</title>
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}">
<link rel="icon" href="/logo.svg" type="image/svg+xml">
{{ with .Params.accent }}<meta name="theme-color" content="{{ . }}">{{ end }}
<link rel="stylesheet" href="/css/style.css">
{{ block "extra_head" . }}{{ end }}
</head>
<body class="{{ if .IsHome }}home{{ else }}page{{ end }}">
<script src="/js/nature-bg.js"></script>
{{ partial "nav.html" . }}
<main id="main-content">
{{ block "body" . }}{{ end }}
</main>
{{ partial "footer.html" . }}
{{ block "extra_scripts" . }}{{ end }}
</body>
</html>