blob: 8da52a67f03e6f6ad1f4e708f923b08150641fe1 (
plain)
1
2
3
4
5
|
<button hx-put="/api/v1/like" hx-vals='{"like": {{ not .Liked }}}' hx-target="this" hx-swap="outerHTML" hx-trigger="click"
class="themed-button themed-button-like flex flex-col shrink-0 w-fit h-fit mr-2 my-auto{{ if .Liked }} active{{ end }}">
<i class="fas fa-thumbs-up w-8 h-fit py-0.5 content-center text-center"></i>
<div class="h-fit px-0.5 content-center bg-(--background-medium-color) text-(--main-hard-color)">{{ .LikedCount }}</div>
</button>
|