hugo-theme-next/layouts/partials/post/post_body.html
2022-06-03 22:37:33 +08:00

13 lines
247 B
HTML

{{ with .ctx }}
<div class="post-body" itemprop="articleBody">
{{- if $.IsHome }}
{{- if .Params.Expand }}
{{ .Content }}
{{- else }}
{{ .Summary }}
{{- end }}
{{- else }}
{{ .Content }}
{{- end }}
</div>
{{ end }}