jetzig/demo/src/app/views/root/_quotes.zmpl
Bob Farrell 16204a4832 Zmpl v2
Update to Zmpl v2, update demo app to be compatible with v2 syntax. Add
deprecation warning for v1 (v1 is default for now - will force v2 soon).
2024-04-07 10:34:34 +01:00

11 lines
364 B
Plaintext

@args message: *ZmplValue
<div>
<h1 class="text-3xl text-center p-3 pb-6 font-bold">{{message}}</h1>
</div>
<button hx-get="/quotes/random" hx-trigger="click" hx-target="#quote" class="bg-[#39b54a] text-white font-bold py-2 px-4 rounded">Click Me</button>
<div id="quote" class="p-7 mx-auto w-1/2">
<div hx-get="/quotes/init" hx-trigger="load"></div>
</div>