21 lines
406 B
HTML
21 lines
406 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<article class="post-single">
|
|
<header>
|
|
{{ partial "development/draft_tag.html" . }}
|
|
<div class="post-title">
|
|
<h1>{{ .Title }}</h1>
|
|
</div>
|
|
</header>
|
|
<section class="post-content">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|