10 lines
288 B
HTML
10 lines
288 B
HTML
|
|
{{ define "body" }}
|
||
|
|
<section class="page-hero" {{ with .Params.accent }}style="--accent: {{ . }}"{{ end }}>
|
||
|
|
<h1>{{ .Title }}</h1>
|
||
|
|
{{ with .Description }}<p class="subtitle">{{ . }}</p>{{ end }}
|
||
|
|
</section>
|
||
|
|
<section class="page-content container">
|
||
|
|
{{ .Content }}
|
||
|
|
</section>
|
||
|
|
{{ end }}
|