55283f14aa
deploy / deploy (push) Successful in 5s
Fill in the gift page's copy (title, description, subhead), wire the cover image into the hero and og:image/Twitter card meta, and point the download links at the real bucket path. Also fixes a bug where every page's meta description fell back to the site-wide bio instead of its own. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language.LanguageCode | default "en" }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
|
|
<meta name="description" content="{{ .Description | default .Site.Params.description }}">
|
|
{{ with .Params.cover_image }}
|
|
<meta property="og:title" content="{{ $.Title }}">
|
|
<meta property="og:description" content="{{ $.Description | default $.Site.Params.description }}">
|
|
<meta property="og:image" content="{{ . }}">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
{{ end }}
|
|
{{ $css := resources.Get "css/main.css" }}
|
|
{{ if hugo.IsProduction }}
|
|
{{ $css = $css | minify | fingerprint }}
|
|
<link rel="stylesheet" href="{{ $css.RelPermalink }}" integrity="{{ $css.Data.Integrity }}">
|
|
{{ else }}
|
|
<link rel="stylesheet" href="{{ $css.RelPermalink }}">
|
|
{{ end }}
|
|
</head>
|
|
<body>
|
|
<a class="skip-link" href="#main-content">Skip to content</a>
|
|
|
|
<header class="site-header">
|
|
<a class="site-title" href="/">{{ .Site.Title }}</a>
|
|
<nav aria-label="Primary">
|
|
{{ range .Site.Menus.main }}
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
</nav>
|
|
</header>
|
|
|
|
<main id="main-content">
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<span>© {{ now.Year }} {{ .Site.Title }}</span>
|
|
<nav aria-label="Footer">
|
|
{{ range .Site.Menus.footer }}
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
</nav>
|
|
</footer>
|
|
</body>
|
|
</html>
|