about summary refs log tree commit diff stats
path: root/layouts/_default/list.html
blob: 6aa2a7dd57174d6daab2d6ddb0391d803d020e32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ partial "head.html" . }}
  <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
		<main class="content container" role="main">
			<h1 class="page-title">{{ .Title }}</h1>
			<ul class="posts">
				{{ range .Data.Pages }}
				<li>
					<a class="post-title u-url" href="{{ .RelPermalink | replaceRE "/$" "" }}">{{ .Title }}</a>
					<time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z" }}">{{ .Date.Format "Monday, 2 January 2006" }}</time>
				</li>
				{{ end }}
			</ul>
		</main>
{{ partial "sidebar.html" . }}
	</body>
</html>