redesign: 沉浸式梦境主题 - 星空粒子、水晶效果、滚动动画
All checks were successful
Deploy / deploy (push) Successful in 2s

This commit is contained in:
Chen Gu
2026-04-23 23:04:10 +08:00
parent b3139f500c
commit 3338178f88
7 changed files with 733 additions and 47 deletions

View File

@@ -1,16 +1,15 @@
{{ define "main" }}
<div class="page-header">
<h1>{{ .Title | default .Section | title }}</h1>
{{ if .Content }}<div class="section-desc">{{ .Content }}</div>{{ end }}
</div>
<div class="list">
<div class="dream-list reveal">
<h1 class="list-heading">
<span class="section-glyph"></span>
{{ .Title | default .Section | title }}
</h1>
{{ range .Paginator.Pages }}
<article class="list-item">
<time>{{ .Date.Format "2006-01-02" }}</time>
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
<a href="{{ .RelPermalink }}" class="list-entry reveal">
<time>{{ .Date.Format "2006.01.02" }}</time>
<h3>{{ .Title }}</h3>
<p>{{ .Summary | truncate 100 }}</p>
</article>
</a>
{{ end }}
</div>
{{ end }}