hugo-book-theme/layouts/posts/single.html
2019-12-19 17:22:12 +01:00

15 lines
262 B
HTML

{{ define "main" }}
<article class="markdown">
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
{{ partial "docs/post-meta" . }}
<p>
{{- .Content -}}
</p>
</article>
{{ end }}
{{ define "toc" }}
{{ partial "docs/toc" . }}
{{ end }}