aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/post/reward.html
blob: 5a26cd71c9c6d4a13e016796e7fb9b32174b404c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 }}