22 lines
561 B
HTML
22 lines
561 B
HTML
|
|
{{ define "main" }}
|
||
|
|
<article>
|
||
|
|
<header class="page-header">
|
||
|
|
<h1>{{ .Title }}</h1>
|
||
|
|
{{ with .Params.description }}<p class="lede">{{ . }}</p>{{ end }}
|
||
|
|
</header>
|
||
|
|
<div class="prose{{ if .Params.wide }} prose--wide{{ end }}">
|
||
|
|
{{ .Content }}
|
||
|
|
</div>
|
||
|
|
{{ with .Pages }}
|
||
|
|
<ul class="post-list">
|
||
|
|
{{ range . }}
|
||
|
|
<li>
|
||
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||
|
|
{{ with .Date }}<time datetime="{{ .Format "2006-01-02" }}">{{ .Format "2006-01-02" }}</time>{{ end }}
|
||
|
|
</li>
|
||
|
|
{{ end }}
|
||
|
|
</ul>
|
||
|
|
{{ end }}
|
||
|
|
</article>
|
||
|
|
{{ end }}
|