2022-06-03 22:37:33 +08:00
|
|
|
{{ with .ctx }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ if $.IsHome }}
|
|
|
|
{{ if and .Site.Params.readMoreBtn (not .Params.Expand) }}
|
2022-06-02 12:13:16 +08:00
|
|
|
<div class="post-button">
|
2022-06-16 17:39:16 +08:00
|
|
|
<a class="btn" href="{{ .RelPermalink | relLangURL }}#more" rel="contents">
|
2023-01-01 22:06:59 +08:00
|
|
|
{{ T "PostMeta.more" }} »
|
2022-06-02 12:13:16 +08:00
|
|
|
</a>
|
|
|
|
</div>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-06-02 12:13:16 +08:00
|
|
|
<div class="post-eof"></div>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ else }}
|
2022-06-07 18:16:40 +08:00
|
|
|
{{ partial "post/footer_meta/tags.html" . }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ if and (not (isset .Params "share")) (not .Params.share) }}
|
2022-06-04 21:07:43 +08:00
|
|
|
{{ partial "_thirdparty/share/addthis.html" . }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-06-04 20:50:30 +08:00
|
|
|
<hr/>
|
2022-06-07 18:16:40 +08:00
|
|
|
{{ partial "post/footer_meta/reward.html" . }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ if and (not (isset .Params "copyright")) (not .Params.copyright) }}
|
2022-06-07 18:16:40 +08:00
|
|
|
{{ partial "post/footer_meta/copyright.html" . }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
|
|
|
{{ if and (not (isset .Params "followme")) (not .Params.followme) }}
|
2022-06-07 18:16:40 +08:00
|
|
|
{{ partial "post/footer_meta/followme.html" . }}
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
|
|
|
{{ if and (not (isset .Params "nav")) (not .Params.nav) }}
|
2022-06-02 12:13:16 +08:00
|
|
|
<div class="post-nav">
|
|
|
|
<div class="post-nav-next post-nav-item">
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ with .NextInSection }}
|
2022-08-02 18:34:55 +08:00
|
|
|
<a href="{{ .RelPermalink | relLangURL }}" rel="next" title="{{ .Title }}">
|
2022-08-02 18:18:26 +08:00
|
|
|
<i class="fa fa-chevron-left"></i> {{ .Title }}
|
2022-06-02 12:13:16 +08:00
|
|
|
</a>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-06-02 12:13:16 +08:00
|
|
|
</div>
|
|
|
|
<div class="post-nav-prev post-nav-item">
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ with .PrevInSection }}
|
2022-08-02 18:18:26 +08:00
|
|
|
<a href="{{ .RelPermalink | relLangURL }}" rel="prev" title="{{ .Title }}">
|
|
|
|
{{ .Title }}
|
2022-06-02 12:13:16 +08:00
|
|
|
<i class="fa fa-chevron-right"></i>
|
|
|
|
</a>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
2022-06-02 12:13:16 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-01 21:12:58 +08:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|