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

11 lines
166 B
HTML
Raw Normal View History

{{ with .ctx }}
{{ if $.IsHome }}
{{ if .Params.Expand }}
{{ .Content }}
{{ else }}
{{ .Summary }}
{{ end }}
{{ else }}
{{ .Content }}
{{ end }}
{{ end }}