12 lines
256 B
HTML
12 lines
256 B
HTML
|
{{ define "main" }}
|
||
|
<section class="section container center">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
</section>
|
||
|
<section class="section secondary">
|
||
|
<div class="container">
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
</section>
|
||
|
{{ partial "sites.html" . }}
|
||
|
{{ end }}
|