summaryrefslogtreecommitdiff
path: root/views/partials/blog-page-like-button.html
blob: d8238f4a13f367f2bf06fd532d0483ba7a9ccaa0 (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 faw-8 h-fit py-0.5 content-center text-center"></i>
    <div class="h-fit px-0.5 content-center bg-background-medium text-main-hard">{{ .LikedCount }}</div>
</button>