1 2 3 4 5 6 7 8 9 10 11 12 13
{% from "macros.j2" import header, footer, navbar %} <!doctype html> <html lang="en"> {{ header() }} <body> <section class="section"> {{ navbar() }} <div hx-post="/clear" hx-swap="outerHTML" hx-trigger="load"></div> <div hx-get="/control" hx-swap="outerHTML" hx-trigger="load"></div> {{ footer() }} </section> </body> </html>