Initial commit

This commit is contained in:
Tie 2026-04-01 21:13:58 +02:00
commit b22231c8b6
40 changed files with 2443 additions and 0 deletions

View file

@ -0,0 +1,14 @@
<button
type="{{ type or 'button' }}"
class="btn {{ class_extra or '' }}"
{% if onclick %}onclick="{{ onclick }}"{% endif %}
{% if hx_get %}hx-get="{{ hx_get }}"{% endif %}
{% if hx_post %}hx-post="{{ hx_post }}"{% endif %}
{% if hx_put %}hx-put="{{ hx_put }}"{% endif %}
{% if hx_delete %}hx-delete="{{ hx_delete }}"{% endif %}
{% if hx_target %}hx-target="{{ hx_target }}"{% endif %}
{% if hx_swap %}hx-swap="{{ hx_swap }}"{% endif %}
{% if disabled %}disabled{% endif %}
>
{{ label }}
</button>