blob: 5a7071875d517f710be61236dfe660a16067cd3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<button class="btn btn-outline-primary btn-sm pull-xs-right {{ if .Project.IsFavorited }} active {{ end }}"
hx-post="/htmx/users/projects/{{ .Project.Slug }}/favorite"
{{ if .IsSelf }}
hx-swap="delete"
hx-target="closest .post-preview"
{{ else }}
hx-swap="outerHTML"
{{ end }}
>
<i class="ion-heart"></i> {{ .Project.GetFavoriteCount }}
</button>
|