blob: d893ea052ebc7fd92b96d4b468b515ee713cecf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<button class="btn btn-sm btn-outline-secondary follow-button action-btn"
hx-post="/htmx/users/{{ .User.Username }}/follow"
hx-swap="outerHTML"
>
{{ if .IsFollowed }}
<i class="ion-minus-round"></i>
Unfollow
{{ else }}
<i class="ion-plus-round"></i>
Follow
{{ end }}
{{ .User.Name }}
<span class="counter">({{ .User.FollowersCount }})</span>
</button>
|