Files
val-blog/themes/dreamscape/layouts/_default/list.html
Chen Gu 3338178f88
All checks were successful
Deploy / deploy (push) Successful in 2s
redesign: 沉浸式梦境主题 - 星空粒子、水晶效果、滚动动画
2026-04-23 23:04:10 +08:00

16 lines
449 B
HTML

{{ define "main" }}
<div class="dream-list reveal">
<h1 class="list-heading">
<span class="section-glyph"></span>
{{ .Title | default .Section | title }}
</h1>
{{ range .Paginator.Pages }}
<a href="{{ .RelPermalink }}" class="list-entry reveal">
<time>{{ .Date.Format "2006.01.02" }}</time>
<h3>{{ .Title }}</h3>
<p>{{ .Summary | truncate 100 }}</p>
</a>
{{ end }}
</div>
{{ end }}