acton-htmx 1.0.0-beta.7

Opinionated Rust web framework for HTMX applications
Documentation
1
2
3
4
5
6
7
8
9
10
<div class="{{ container_class }}" role="status" aria-live="polite">
{%- for msg in messages %}
<div class="{{ msg.css_class }}" role="alert">
{%- if msg.title %}
<strong>{{ msg.title }}</strong>
{%- endif %}
<span>{{ msg.message }}</span>
</div>
{%- endfor %}
</div>