aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/recent-posts.html
blob: 4c3a7841ff772bde3de82fde7c8bf2036f31fd6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{{ $mode := 2 }}
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ $recent := first 15 $pages.ByDate.Reverse }}

<div class="recent-posts">
	{{ if $recent }}
	<ul class="posts-list {{ if eq $mode 1 }}with-summary{{ else }}title-only{{ end }}" style="list-style: none;padding-left: 1;">

		{{ range $index, $post := $recent }}
		<li>

			<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "2006-01-02" }}</time>

			<span class="post-link-wrapper">
				<a href="{{ .RelPermalink }}" class="post-title">{{ .Title }}</a>
			</span>

		</li>
		{{ end }}

	</ul>
	{{ else }}
	<p class="posts-empty">暂无随笔 / No posts found.</p>
	{{ end }}
</div>