hugo-theme-next/layouts/partials/post/body.html
2023-01-01 21:12:58 +08:00

11 lines
166 B
HTML

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