18 lines
569 B
HTML
18 lines
569 B
HTML
{{ if .IsHome }}
|
|
{{ $posts := where site.RegularPages "Section" "docs" }}
|
|
{{ $posts = where $posts "Params.bookHidden" "ne" true }}
|
|
{{ $posts = $posts.ByDate.Reverse }}
|
|
{{ if $posts }}
|
|
<article class="markdown book-article">
|
|
<h2>Recent Posts</h2>
|
|
<ul>
|
|
{{ range first 10 $posts }}
|
|
<li>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{ with .Date }}<small style="opacity: 0.6; margin-left: 0.5em;">— {{ .Format "January 2, 2006" }}</small>{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|