aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/index.html
blob: be384dbc6369c8bf86a1436a0a63f556b29c6319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ partial "header.html" . }}
<main>
	<header class="header-inline">
		<div class="heading">
			<div class="info">
				<div class="content">
					{{ if (gt .Params.date 0) }} {{ .Date.Format "January 2, 2006" }} {{ end }} {{ if (gt .Params.author 0) }} by {{ with .Params.author }} {{ . }} {{ end }} {{ end }}
				</div>
			</div>
			<div class="content">
				<h1>{{ .Title | markdownify }}</h1>
			</div>
		</div>
	</header>

	<div class="content">
		{{ .Content }}

		<ul>
			{{ range where .Site.RegularPages "Section" "posts" }}
			<li>{{ .Date.Format "January 2, 2006" }}
				<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
			</li>
			{{ end }}
		</ul>
	</div>
</main>
{{ partial "footer.html" . }}