summaryrefslogtreecommitdiff
path: root/themes/new_theme/layouts/partials/widgets/recent.html
blob: 6aaee198280b0ae9b6046760226ac78edb1e83c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{- if .Site.Params.widgets.recent_articles }}
<div class="widget-recent widget">
	<h4 class="widget__title">Recent Posts</h4>
	<div class="widget__content">
		<ul class="widget__list">
			{{- range first 10 (where .Site.Pages "Section" "blog") }}
			<li class="widget__item"><a class="widget__link" href="{{ .RelPermalink }}">{{ .Title }}</a></li>
			{{- end }}
		</ul>
	</div>
</div>
{{- end }}