15 lines
321 B
HTML
15 lines
321 B
HTML
{{ define "main" }}
|
|
<article>
|
|
<header>
|
|
<p class="eyebrow">{{ .Section | title }}</p>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Summary }}
|
|
<p class="lede">{{ . }}</p>
|
|
{{ end }}
|
|
</header>
|
|
<section class="page-section rich-copy">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|