summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/article-list.html
blob: a870eac25f33eba1ad946124ff80eff4b8fe55cf (plain)
1
2
3
4
5
6
<ul>
	{{- range where .Site.RegularPages "Type" (.Get "category") | first (.Get "number") }}
	<li>{{ .Date.Format "02/01/06" }} - <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
	{{- end }}
	<li><i><a href="{{ .Get "category" }}">See more...</a></i></li>
</ul>