26 lines
797 B
HTML
26 lines
797 B
HTML
{{ with .ctx }}
|
|
{{ if $.IsHome }}
|
|
{{ if .Params.Expand }}
|
|
{{ .Content }}
|
|
{{ else }}
|
|
{{ .Summary }}
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ $expired := default .Site.Params.PostMeta.expired .Params.Expired }}
|
|
{{ if $expired }}
|
|
<div class="post-expired-tip" id="post-expired-tip">
|
|
<div class="post-expired-title">
|
|
<i class="fa-solid fa-hourglass-half"></i>
|
|
<span>{{ T "PostMeta.expired.title" }}</span>
|
|
</div>
|
|
<div id="post-expired-content" class="post-expired-content"></div>
|
|
</div>
|
|
{{ end }}
|
|
{{/** Started use the read more content anchor the need
|
|
Hugo framework min marjo version greater than 0.134.0 **/}}
|
|
{{ .Summary }}
|
|
<!-- It's an anchor point to locate read more content start. -->
|
|
<a id="more"></a>
|
|
{{ .ContentWithoutSummary }}
|
|
{{ end }}
|
|
{{ end }} |