22 lines
618 B
HTML
22 lines
618 B
HTML
{{ define "main" }}
|
|
<header class="content__header">
|
|
<h1>{{ .Title | markdownify }}</h1>
|
|
{{ .Content }}
|
|
</header>
|
|
|
|
{{ range where .Pages "Kind" "page" }}
|
|
<article class="post">
|
|
<header class="post__header">
|
|
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> -- {{ .Date.Format "2 January 2006" }}</h1>
|
|
</header>
|
|
|
|
<section class="post__summary">
|
|
{{ .Description }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{define "aside" }}
|
|
{{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
|
|
{{ end }}
|