17 lines
282 B
HTML
17 lines
282 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<header class="post-title">
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
|
|
<section class="post-content">
|
|
{{ .Content }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|