13 lines
317 B
HTML
13 lines
317 B
HTML
{{- define "main" }}
|
|
<article aria-labelledby="nocolor_title">
|
|
<h1 class="post-title" id="nocolor_title">{{ if .Draft }}DRAFT: {{ end }}{{ .Title }}</h1>
|
|
{{ partial "post_meta.html" . }}
|
|
|
|
{{ partial "toc.html" . }}
|
|
|
|
<section class="content" aria-label="Content">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
{{- end }}
|