15 lines
345 B
HTML
15 lines
345 B
HTML
|
|
{{ define "main" }}
|
||
|
|
<article class="home">
|
||
|
|
<header class="hero">
|
||
|
|
{{ with .Params.status }}
|
||
|
|
<p class="status-chip">{{ . | safeHTML }}</p>
|
||
|
|
{{ end }}
|
||
|
|
<h1>{{ .Title }}</h1>
|
||
|
|
{{ with site.Params.description }}<p class="lede">{{ . }}</p>{{ end }}
|
||
|
|
</header>
|
||
|
|
<div class="prose">
|
||
|
|
{{ .Content }}
|
||
|
|
</div>
|
||
|
|
</article>
|
||
|
|
{{ end }}
|