mirror of
https://github.com/flysnow-org/maupassant-hugo.git
synced 2026-08-24 07:18:55 +00:00
8 lines
281 B
HTML
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> |