aboutsummaryrefslogtreecommitdiff
path: root/landing/layouts/_default
diff options
context:
space:
mode:
authorbenj <benj@rse8.com>2026-04-09 15:22:43 +0800
committerbenj <benj@rse8.com>2026-04-09 15:22:43 +0800
commit5f56e0eaf8030f78077fc93b441296bb51fe9331 (patch)
treeab2bad3b7fb1e5bf40d4130f7a158d0ca7ddb011 /landing/layouts/_default
parent862216a47ae42ec831d4c2cf0de18225f6971de5 (diff)
downloadtidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar.gz
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar.bz2
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar.lz
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar.xz
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.tar.zst
tidyindex-5f56e0eaf8030f78077fc93b441296bb51fe9331.zip
Add initial Hugo landing page
First pass at the tidyindex.com marketing site, built with a custom minimal Hugo theme — light palette (white/soft blue), Inter + JetBrains Mono, hero with a JSON code preview, format/audience/value sections, and a single-button CTA. Also adds a top-level .gitignore for local Claude/IDE state. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'landing/layouts/_default')
-rw-r--r--landing/layouts/_default/baseof.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/landing/layouts/_default/baseof.html b/landing/layouts/_default/baseof.html
new file mode 100644
index 0000000..89a0bd7
--- /dev/null
+++ b/landing/layouts/_default/baseof.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode | default "en" }}">
+<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 }}" />
+
+ <meta property="og:title" content="{{ .Site.Title }}" />
+ <meta property="og:description" content="{{ .Site.Params.description }}" />
+ <meta property="og:type" content="website" />
+ <meta property="og:url" content="{{ .Site.BaseURL }}" />
+
+ <meta name="twitter:card" content="summary_large_image" />
+ <meta name="twitter:title" content="{{ .Site.Title }}" />
+ <meta name="twitter:description" content="{{ .Site.Params.description }}" />
+
+ <link rel="preconnect" href="https://fonts.googleapis.com">
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
+
+ <link rel="stylesheet" href="{{ "css/style.css" | relURL }}" />
+ <link rel="icon" type="image/svg+xml" href="{{ "favicon.svg" | relURL }}" />
+</head>
+<body>
+ {{ partial "header.html" . }}
+ <main>
+ {{ block "main" . }}{{ end }}
+ </main>
+ {{ partial "footer.html" . }}
+</body>
+</html>