hugo-theme-nocolor/layouts/_default/single.html

13 lines
317 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
{{- define "main" }}
2021-03-23 02:45:30 +01:00
<article aria-labelledby="nocolor_title">
<h1 class="post-title" id="nocolor_title">{{ if .Draft }}DRAFT: {{ end }}{{ .Title }}</h1>
{{ partial "post_meta.html" . }}
2019-11-20 19:56:22 +01:00
2021-03-23 02:45:30 +01:00
{{ partial "toc.html" . }}
2020-12-27 20:08:16 +01:00
2021-03-23 02:45:30 +01:00
<section class="content" aria-label="Content">
{{ .Content }}
</section>
</article>
2019-11-20 19:56:22 +01:00
{{- end }}