A vibe coded tangled fork which supports pijul.
at a113f9f490a5958a7e71ef5ed126929f5de1ec43 17 lines 447 B view raw
1{{ define "fragments/follow" }} 2 <button id="followBtn" 3 class="btn mt-2 w-full" 4 5 {{ if eq .FollowStatus.String "IsNotFollowing" }} 6 hx-post="/follow?subject={{.UserDid}}" 7 {{ else }} 8 hx-delete="/follow?subject={{.UserDid}}" 9 {{ end }} 10 11 hx-trigger="click" 12 hx-target="#followBtn" 13 hx-swap="outerHTML" 14 > 15 {{ if eq .FollowStatus.String "IsNotFollowing" }}Follow{{ else }}Unfollow{{ end }} 16 </button> 17{{ end }}