2022-09-25 07:53:07 -07:00
|
|
|
{{ define "header" }}
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ end }}
|
2021-10-05 20:26:33 -07:00
|
|
|
|
2022-09-25 07:53:07 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<header class="post-title">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
</header>
|
2021-10-05 20:26:33 -07:00
|
|
|
|
2022-09-25 07:53:07 -07:00
|
|
|
<section class="post-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
2021-10-05 20:26:33 -07:00
|
|
|
|
2022-09-25 07:53:07 -07:00
|
|
|
{{ define "footer" }}
|
|
|
|
{{ partial "footer.html" . }}
|
2021-10-05 20:26:33 -07:00
|
|
|
{{ end }}
|