12 lines
227 B
HTML
12 lines
227 B
HTML
{{ partial "header.html" . }}
|
|
|
|
<div class="header" style="background-color: whitesmoke">
|
|
<h1>{{ .Title }}</h1>
|
|
<h2>{{ .Description }}</h2>
|
|
</div>
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|