Files
SWebStatic/layouts/_default/single.html
T

10 lines
292 B
HTML
Raw Normal View History

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