feat: cinematic polish for first chapter (title card, immersive UI suppression, camera typography)
All checks were successful
Deploy / deploy (push) Successful in 1s

This commit is contained in:
Chen Gu
2026-04-24 11:19:15 +08:00
parent df1732c54c
commit 4c2e36ecb0
5 changed files with 409 additions and 109 deletions

View File

@@ -10,11 +10,11 @@
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
<link rel="alternate" type="application/rss+xml" href='{{ "feed.xml" | relURL }}'>
</head>
<body class="kind-{{ .Kind }}{{ with .Section }} section-{{ . }}{{ end }}">
<body class="kind-{{ .Kind }}{{ with .Section }} section-{{ . }}{{ end }}{{ if and (eq .Kind "page") (eq .Section "journey") }} immersive-single{{ end }}">
<canvas id="starfield"></canvas>
<div id="app">
<nav class="nav">
<a href="/" class="nav-logo"></a>
<nav class="nav" aria-label="主导航">
<a href="{{ "/" | relURL }}" class="nav-logo" aria-label="返回首页"></a>
{{ range .Site.Menus.main }}
<a href="{{ .URL | relURL }}" class="nav-link">{{ .Name }}</a>
{{ end }}
@@ -22,7 +22,7 @@
<main>
{{- block "main" . }}{{- end }}
</main>
<footer class="footer">
<footer class="footer" aria-label="页脚">
<span>✦ Val's Dreamscape Journal ✦</span>
</footer>
</div>