12 lines
283 B
HTML
12 lines
283 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>
|
||
|
|
</article>
|
||
|
|
{{ end }}
|