feat(val-blog): scaffold containerized Hugo dev flow with compose and starter content

This commit is contained in:
Chen Gu
2026-08-13 17:00:21 +08:00
parent 95f2c06955
commit 2c9f4cbf67
15 changed files with 1272 additions and 0 deletions
@@ -0,0 +1,9 @@
{{ define "main" }}
<p>{{ .Site.Params.description }}</p>
<h2>最新旅程</h2>
<ul>
{{ range first 10 (where .Site.RegularPages "Section" "journey") }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a> <small>{{ .Date.Format "2006-01-02" }}</small></li>
{{ end }}
</ul>
{{ end }}