{{ with .ctx }}
{{ if $.IsHome }}
{{ if .Params.Expand }}
{{ .Content }}
{{ else }}
{{ .Summary }}
{{ end }}
{{ else }}
{{/** Post expired tip message **/}}
{{ $expired := default .Site.Params.PostMeta.expired .Params.Expired }}
{{ if $expired }}
{{ T "PostMeta.expired.title" }}
{{ end }}
{{/** Post summary **/}}
{{ if .Site.Params.PostMeta.summary }}
{{ with .Params.Description }}
{{ T "PostMeta.summary.title" }}
{{ . }}
{{ end }}
{{ end }}
{{/** Started use the read more content anchor the need
Hugo framework min marjo version greater than 0.134.0 **/}}
{{ .Summary }}
{{ .ContentWithoutSummary }}
{{ end }}
{{ end }}