recent.html 415 B

1234567891011121314
  1. {{ $num_recent_posts := default 5 .Site.Params.sidebar.num_recent_posts }}
  2. {{ $posts := first $num_recent_posts (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }}
  3. {{ if gt (len $posts) 0 }}
  4. <section>
  5. <h4>最新</h4>
  6. <ol class="list-unstyled">
  7. {{ range $posts }}
  8. <li>
  9. <a href="{{.RelPermalink}}">{{.Title | markdownify }}</a>
  10. </li>
  11. {{ end }}
  12. </ol>
  13. </section>
  14. {{ end }}