Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sidebar.html « partials « layouts - github.com/vimux/blank.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e941767123415257ebc561606af34cf050af3eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
	<aside>
		<div>
			<div>
				<h3>LATESTS POSTS</h3>
			</div>
			<div>
				<ul>
					{{ range first 5 .Site.Pages }}
					<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
					{{ end }}
				</ul>
			</div>
		</div>
	</aside>