hugo-book-theme/layouts/posts/single.html

16 lines
262 B
HTML
Raw Normal View History

2018-11-24 15:14:43 +01:00
{{ define "main" }}
2019-12-19 17:22:12 +01:00
<article class="markdown">
<h1>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</h1>
{{ partial "docs/post-meta" . }}
<p>
{{- .Content -}}
2019-12-19 17:22:12 +01:00
</p>
</article>
2018-11-25 13:30:25 +01:00
{{ end }}
{{ define "toc" }}
{{ partial "docs/toc" . }}
{{ end }}