{{ $num_recent_posts := default 5 .Site.Params.sidebar.num_recent_posts }} {{ $posts := first $num_recent_posts (where .Site.RegularPages "Section" "in" .Site.Params.mainSections) }} {{ if gt (len $posts) 0 }} <section> <h4>最新</h4> <ol class="list-unstyled"> {{ range $posts }} <li> <a href="{{.RelPermalink}}">{{.Title | markdownify }}</a> </li> {{ end }} </ol> </section> {{ end }}