diff options
Diffstat (limited to 'layouts/partials/post')
| -rw-r--r-- | layouts/partials/post/copyright.html | 35 | ||||
| -rw-r--r-- | layouts/partials/post/outdated-info-warning.html | 28 | ||||
| -rw-r--r-- | layouts/partials/post/reward.html | 21 | ||||
| -rw-r--r-- | layouts/partials/post/toc.html | 9 | 
4 files changed, 93 insertions, 0 deletions
| diff --git a/layouts/partials/post/copyright.html b/layouts/partials/post/copyright.html new file mode 100644 index 0000000..35a7609 --- /dev/null +++ b/layouts/partials/post/copyright.html @@ -0,0 +1,35 @@ +{{ if or .Params.postMetaInFooter (and .Site.Params.postMetaInFooter (ne .Params.postMetaInFooter false)) -}} +<div class="post-copyright"> +  <p class="copyright-item"> +    <span class="item-title">{{ T "author" }}</span> +    <span class="item-content">{{ if .Params.author }}{{ .Params.author | safeHTML }}{{ else }}{{ .Site.Author.name | safeHTML }}{{ end }}</span> +  </p> +  <p class="copyright-item"> +    <span class="item-title">{{ T "lastMod" }}</span> +    <span class="item-content"> +        {{ .Lastmod.Format (.Site.Params.dateFormatToUse | default "2006-01-02") }} +        {{ with .GitInfo }}<a href="{{ $.Site.Params.gitRepo }}/commit/{{ .Hash }}" title="{{ .Subject }}">({{ .AbbreviatedHash }})</a>{{ end }} +    </span> +  </p> +  {{ if $.Site.Params.linkToMarkDown -}} +    {{ with $.OutputFormats.Get "markdown" -}} +    <p class="copyright-item"> +      <span class="item-title">{{ T "markdown" }}</span> +      <span class="item-content"><a class="link-to-markdown" href="{{ .Permalink }}" target="_blank">{{ T "seeMarkDown" }}</a></span> +    </p> +    {{- end }} +  {{- end }} +  {{ if or .Params.contentCopyright (and .Site.Params.contentCopyright (ne .Params.contentCopyright false)) -}} +  <p class="copyright-item"> +    <span class="item-title">{{ T "license" }}</span> +    <span class="item-content"> +    {{- if .Params.contentCopyright -}} +      {{ .Params.contentCopyright | safeHTML }} +    {{- else -}} +      {{ .Site.Params.contentCopyright | safeHTML }} +    {{- end -}} +    </span> +  </p> +  {{- end }} +</div> +{{- end }} diff --git a/layouts/partials/post/outdated-info-warning.html b/layouts/partials/post/outdated-info-warning.html new file mode 100644 index 0000000..3736c13 --- /dev/null +++ b/layouts/partials/post/outdated-info-warning.html @@ -0,0 +1,28 @@ +{{- if or .Params.enableOutdatedInfoWarning (and .Site.Params.outdatedInfoWarning.enable (ne .Params.enableOutdatedInfoWarning false)) }} +  {{- $daysAgo := div (sub now.Unix .Lastmod.Unix) 86400 }} +  {{- $hintThreshold := .Site.Params.outdatedInfoWarning.hint | default 30 }} +  {{- $warnThreshold := .Site.Params.outdatedInfoWarning.warn | default 180 }} + +  {{- $updateTime := .Lastmod }} +  {{- if .GitInfo }} +    {{- if lt .GitInfo.AuthorDate.Unix .Lastmod.Unix }} +      {{- $updateTime := .GitInfo.AuthorDate }} +    {{- end }} +  {{- end -}} + +  {{- if gt $daysAgo $hintThreshold }} +  <div class="post-outdated"> +    {{- if gt $daysAgo $warnThreshold }} +    <div class="warn"> +    {{- else }} +    <div class="hint"> +    {{- end }} +      <p>{{ T "outdatedInfoWarningBefore" -}} +        <span class="timeago" datetime="{{ dateFormat "2006-01-02T15:04:05" $updateTime }}" title="{{ dateFormat "January 2, 2006" $updateTime }}"> +        {{- dateFormat "January 2, 2006" $updateTime -}} +        </span>{{ T "outdatedInfoWarningAfter" -}} +      </p> +    </div> +  </div> +  {{- end -}} +{{- end -}} diff --git a/layouts/partials/post/reward.html b/layouts/partials/post/reward.html new file mode 100644 index 0000000..baceac7 --- /dev/null +++ b/layouts/partials/post/reward.html @@ -0,0 +1,21 @@ +{{ if or .Params.reward (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">{{ T "reward" }}</label> +  <div class="qr-code"> +    {{ $qrCode := .Site.Params.reward }} +    {{ with $qrCode.wechat -}} +      <label class="qr-code-image" for="reward"> +        <img class="image" src="{{ . }}"> +        <span>{{ T "rewardWechat" }}</span> +      </label> +    {{- end }} +    {{ with $qrCode.alipay -}} +      <label class="qr-code-image" for="reward"> +        <img class="image" src="{{ . }}"> +        <span>{{ T "rewardAlipay" }}</span> +      </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..759ad43 --- /dev/null +++ b/layouts/partials/post/toc.html @@ -0,0 +1,9 @@ +{{ if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) -}} +<div class="post-toc" id="post-toc"> +  <h2 class="post-toc-title">{{ T "toc" }}</h2> +  {{- $globalAutoCollapseToc := .Site.Params.autoCollapseToc | default false }} +  <div class="post-toc-content{{ if not (or .Params.autoCollapseToc (and $globalAutoCollapseToc (ne .Params.autoCollapseToc false))) }} always-active{{ end }}"> +    {{.TableOfContents}} +  </div> +</div> +{{- end }}
\ No newline at end of file | 
