hugo-theme-next/layouts/partials/post/body.html
2022-06-07 18:16:40 +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 }}