13 lines
247 B
HTML
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 }} |