summaryrefslogtreecommitdiff
path: root/layouts/partials/sidebar.html
blob: 679b16e2ac723296b8a64d3d5248d5dbdd06c0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
	<aside>
		<div>
			<div>
				<h3>LATEST POSTS</h3>
			</div>
			<div>
				<ul>
					{{ range first 5 .Site.Pages }}
					<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
					{{ end }}
				</ul>
			</div>
		</div>
	</aside>