This commit is contained in:
2026-03-25 15:14:49 +09:00
commit 266e0b0cf9
84 changed files with 4624 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{{ define "main" }}
{{- partial "nav.html" . -}}
{{ $pages := union .RegularPages .Sections }}
<div class="post-list">
<h1>{{ with .Title }}{{ . }}{{ else }}{{ .Section }}{{ end }}</h1>
<ul>
{{ range $pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
{{ if gt .Date.Year 2000 }}<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
</li>
{{ end }}
</ul>
</div>
{{ end }}