Files
FixIt/layouts/partials/plugin/reward.html
T
Mejituu 866203a4ce Feat: add some new features and bug fixes (#279)
*  Feat: add instant page

* 🐛 Fix: donate images without lazy loading

* 🔧 Chore: update waline plugin version
2023-02-01 15:00:36 +08:00

25 lines
890 B
HTML

{{- $reward := .Reward -}}
{{- $id := .Id -}}
{{- $author := .Author -}}
{{- if $reward.enable -}}
<div class="post-reward">
<div class="comment">{{- $reward.comment -}}</div>
<input type="checkbox" class="reward-input" name="reward" id="{{ $id }}" hidden />
<label class="reward-button" for="{{ $id }}">{{- T "single.reward.donate" -}}</label>
<div class="reward-ways">
{{- range $way, $image := $reward.ways -}}
{{- with T (printf "single.reward.%v" $way) -}}
{{- $way = . -}}
{{- end -}}
{{- if $image -}}
<div>
{{- dict "Src" $image "Alt" (printf "%v %v" $author $way) "Resources" $.Resources | partial "plugin/image.html" -}}
<span{{- if $reward.animation }} data-animation{{- end -}}>{{- $way -}}</span>
</div>
{{- end -}}
{{- end -}}
</div>
</div>
{{- end -}}