12 lines
234 B
HTML
12 lines
234 B
HTML
{{ partial "header.html" . }}
|
|
<div class="postBody">
|
|
<div class="post">
|
|
{{ if .Title }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ end }}
|
|
<div class="content">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|