summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/widgets/recent.html
blob: c2640626dc14774b6cb1b7a71345d3c78e4077ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $recent := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{- $recent_num := (.Site.Params.widgets.recent_num | default 10) }}

{{- if $recent }}
<div class="widget-recent widget">
	<h4 class="widget__title">{{ T "recent_title" }}</h4>
	<div class="widget__content">
		<ul class="widget__list">
			{{- range first $recent_num $recent }}
			<li class="widget__item"><a class="widget__link" href="{{ .RelPermalink }}">{{ .Title }}</a></li>
			{{- end }}
		</ul>
	</div>
</div>
{{- end }}