about summary refs log tree commit diff stats
path: root/layouts/_default/list.html
blob: 38c880c006f105cc3fa2e746833d3bcac282d8d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ template "theme/partials/head.html" . }}
	<body class="theme-base-0b layout-reverse">
{{ template "theme/partials/sidebar.html" . }}
		<div class="content container">
			<ul class="posts">
				{{ range .Data.Pages }}
				<li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></li>
				{{ end }}
			</ul>
		</div>
	</body>
</html>