Val's Dreamscape Journal - initial

This commit is contained in:
Chen Gu
2026-04-23 12:20:19 +08:00
commit 4423c3a648
18 changed files with 1077 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<footer class="site-footer">
<p>&copy; {{ now.Year }} {{ .Site.Params.author }} · {{ .Site.Title }}</p>
</footer>

View File

@@ -0,0 +1,3 @@
<meta name="theme-color" content="#1a1a2e">
<link rel="stylesheet" href="/css/style.css">
<link rel="alternate" type="application/rss+xml" href="{{ "feed.xml" | relURL }}">

View File

@@ -0,0 +1,8 @@
<header class="site-header">
<a href="/" class="logo">{{ .Site.Title }}</a>
<nav>
{{ range .Site.Menus.main }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
</nav>
</header>