19 lines
210 B
HTML
19 lines
210 B
HTML
|
{{ partial "head.html" . }}
|
||
|
|
||
|
<div id="center-wrapper">
|
||
|
|
||
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<div id="wrapper">
|
||
|
|
||
|
<main>
|
||
|
<h2>{{ .Title }}</h2>
|
||
|
|
||
|
{{ .Content }}
|
||
|
</main>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</html>
|