mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-25 09:36:32 -05:00
10 lines
203 B
HTML
10 lines
203 B
HTML
|
{{ define "main"}}
|
||
|
<h1 class='title'>{{ .Title }}</h1>
|
||
|
{{ partial "header.html" . }}
|
||
|
<!-- content -->
|
||
|
<div id="contentBody">
|
||
|
{{ .Content }}
|
||
|
</div>
|
||
|
{{ partial "footer.html" . }}
|
||
|
{{ end }}
|