10 lines
223 B
HTML
10 lines
223 B
HTML
{{ define "main" }}
|
|
{{ partial "header.html" }}
|
|
<article>
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
<h2>{{ .Description }}</h2>
|
|
</header>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|