A vibe coded tangled fork which supports pijul.
at f44471b85e8cd0a36b9c900b04d871faf8e29f7d 17 lines 452 B view raw
1{{ define "user/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 }}