list.html 838 B

1234567891011121314151617181920212223242526
  1. {{ define "main" }}
  2. <section class="card page-head">
  3. <span class="eyebrow">Section</span>
  4. <h1>{{ .Title }}</h1>
  5. <div class="prose">{{ .Content }}</div>
  6. </section>
  7. <section class="post-list">
  8. {{ range .Pages.ByDate.Reverse }}
  9. <article class="card post-item">
  10. <h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
  11. <p class="meta">{{ .Date.Format "2006-01-02" }}</p>
  12. {{ with .Params.tags }}
  13. <p class="tags">
  14. {{ range . }}<a class="tag" href="{{ "/tags/" | relURL }}{{ . | urlize }}/#{{ . }}">{{ . }}</a>{{ end }}
  15. </p>
  16. {{ end }}
  17. <p>{{ with .Summary }}{{ . | plainify }}{{ else }}{{ .Params.summary }}{{ end }}</p>
  18. </article>
  19. {{ else }}
  20. <article class="card post-item">
  21. <p>这个分区还没有内容。</p>
  22. </article>
  23. {{ end }}
  24. </section>
  25. {{ end }}