hugo-theme-next/layouts/partials/post/footer.html

44 lines
1.3 KiB
HTML
Raw Normal View History

{{ with .ctx }}
{{ if $.IsHome }}
{{ if and .Site.Params.readMoreBtn (not .Params.Expand) }}
<div class="post-button">
2022-06-16 17:39:16 +08:00
<a class="btn" href="{{ .RelPermalink | relLangURL }}#more" rel="contents">
{{ T "PostReadMore" }} &raquo;
</a>
</div>
{{ end }}
<div class="post-eof"></div>
{{ else }}
2022-06-07 18:16:40 +08:00
{{ partial "post/footer_meta/tags.html" . }}
{{ if and (not (isset .Params "share")) (not .Params.share) }}
{{ partial "_thirdparty/share/addthis.html" . }}
{{ end }}
<hr/>
2022-06-07 18:16:40 +08:00
{{ partial "post/footer_meta/reward.html" . }}
{{ if and (not (isset .Params "copyright")) (not .Params.copyright) }}
2022-06-07 18:16:40 +08:00
{{ partial "post/footer_meta/copyright.html" . }}
{{ end }}
{{ if and (not (isset .Params "followme")) (not .Params.followme) }}
2022-06-07 18:16:40 +08:00
{{ partial "post/footer_meta/followme.html" . }}
{{ end }}
{{ if and (not (isset .Params "nav")) (not .Params.nav) }}
<div class="post-nav">
<div class="post-nav-next post-nav-item">
{{ with .NextInSection }}
<a href="{{ .RelPermalink | relLangURL }}" rel="next" title="{{ .Title }}">
<i class="fa fa-chevron-left"></i> {{ .Title }}
</a>
{{ end }}
</div>
<div class="post-nav-prev post-nav-item">
{{ with .PrevInSection }}
<a href="{{ .RelPermalink | relLangURL }}" rel="prev" title="{{ .Title }}">
{{ .Title }}
<i class="fa fa-chevron-right"></i>
</a>
{{ end }}
</div>
</div>
{{ end }}
{{ end }}
{{ end }}