diff options
Diffstat (limited to 'layouts/partials/post')
-rw-r--r-- | layouts/partials/post/copyright.html | 33 | ||||
-rw-r--r-- | layouts/partials/post/reward.html | 19 | ||||
-rw-r--r-- | layouts/partials/post/toc.html | 8 |
3 files changed, 60 insertions, 0 deletions
diff --git a/layouts/partials/post/copyright.html b/layouts/partials/post/copyright.html new file mode 100644 index 0000000..6908b10 --- /dev/null +++ b/layouts/partials/post/copyright.html @@ -0,0 +1,33 @@ +{{ if and .Site.Copyright (ne .Params.copyright false) }} +{{ $lang := .Site.Data.even.default -}} +<div class="post-copyright"> + <p class="copyright-item"> + <span class="item-title">{{ $lang.copyright.author }}: </span> + <span>{{ if .Params.author }}{{ .Params.author | safeHTML }}{{ else }}{{ .Site.Author.name | safeHTML }}{{ end }}</span> + </p> + <p class="copyright-item"> + <span class="item-title">{{ $lang.copyright.lastMod }}: </span> + {{ .Lastmod.Format "2006-01-02" }} + </p> + <p class="copyright-item"> + <span class="item-title">{{ $lang.copyright.link }}: </span> + <a href="{{ .Permalink }}">{{ .Permalink }}</a> + </p> + {{ if $.Site.Params.linkToMarkDown -}} + {{ with $.OutputFormats.Get "markdown" -}} + <p class="copyright-item"> + <span class="item-title">{{ $lang.copyright.markdown }}: </span> + <a class="link-to-markdown" href="{{ .Permalink }}" target="_blank">{{ $lang.posts.seeMarkDown }}</a> + </p> + {{- end }} + {{- end }} + <p class="copyright-item lincese"> + <span class="item-title">{{ $lang.copyright.lincese }}: </span> + {{ if .Params.copyright -}} + {{ .Params.copyright | safeHTML }} + {{ else -}} + {{ .Site.Copyright | safeHTML }} + {{- end }} + </p> +</div> +{{- end }}
\ No newline at end of file diff --git a/layouts/partials/post/reward.html b/layouts/partials/post/reward.html new file mode 100644 index 0000000..5a26cd7 --- /dev/null +++ b/layouts/partials/post/reward.html @@ -0,0 +1,19 @@ +{{ if and .Site.Params.reward.enable (ne .Params.reward false) }} +<div class="post-reward"> + <input type="checkbox" name="reward" id="reward" hidden /> + <label class="reward-button" for="reward">{{ .Site.Data.even.default.posts.reward }}</label> + <div class="qr-code"> + {{ $qrCode := .Site.Params.reward }} + {{ with $qrCode.wechat }} + <label class="qr-code-image" for="reward"> + <img class="image" src="{{ . }}" title="wechat"> + </label> + {{- end }} + {{ with $qrCode.alipay }} + <label class="qr-code-image" for="reward"> + <img class="image" src="{{ . }}" title="alipay"> + </label> + {{- end }} + </div> +</div> +{{- end }}
\ No newline at end of file diff --git a/layouts/partials/post/toc.html b/layouts/partials/post/toc.html new file mode 100644 index 0000000..7921065 --- /dev/null +++ b/layouts/partials/post/toc.html @@ -0,0 +1,8 @@ +{{ if and .Site.Params.toc (ne .Params.toc false) }} +<div class="post-toc" id="post-toc"> + <h2 class="post-toc-title">{{ .Site.Data.even.default.posts.toc }}</h2> + <div class="post-toc-content"> + {{.TableOfContents}} + </div> +</div> +{{- end }}
\ No newline at end of file |