Files
maupassant-hugo/layouts/partials/recent_post.html
T
2018-10-23 20:37:55 +08:00

8 lines
281 B
HTML

<h3 class="widget-title">最近文章</h3>
<ul class="widget-list">
{{ range first 10 (where (where .Site.Pages "Type" "in" (slice "post" "posts")) "Kind" "page") }}
<li>
<a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>