blob: c63182a7d255af7c6e88cfabac82d00b83e41ef2 (
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 .Article.IsFavorited }} active {{ end }}"
hx-post="/htmx/users/articles/{{ .Article.Slug }}/favorite"
{{ if .IsSelf }}
hx-swap="delete"
hx-target="closest .post-preview"
{{ else }}
hx-swap="outerHTML"
{{ end }}
>
<i class="ion-heart"></i> {{ .Article.GetFavoriteCount }}
</button>
|