mirror of
https://git.adityakumar.xyz/hugo-theme-even.git
synced 2024-11-09 23:09:47 +00:00
19 lines
No EOL
671 B
HTML
19 lines
No EOL
671 B
HTML
{{ 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 }} |