hugo-theme-next/layouts/partials/post/body.html

13 lines
247 B
HTML
Raw Normal View History

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