summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/article-list.html
blob: d3d826edf92c966c90cceae91edfb80abad9fd51 (plain)
1
2
3
4
5
6
7
8
9
10
11
<h2>
	{{ .Get "category" | title }}
</h2>
<ul>
	{{- range where .Site.RegularPages "Type" (.Get "category") | first (.Get "number") }}
	<li>{{ .Date.Format "02/01/06" }} - <a href="{{ .RelPermalink }}" {{ if .Params.copied }}style="color:#73daca;" {{ end
			}}>{{
			.Title }}</a></li>
	{{- end }}
</ul>
<a href='{{ .Get "category" }}'>See more...</a>