2025-06-01 12:25:33 -04:00
|
|
|
(text "{% extends \"root.html\" %} {% block body %}")
|
|
|
|
(main
|
2025-08-03 23:24:57 -04:00
|
|
|
("class" "flex flex_col gap_2")
|
2025-07-03 21:56:21 -04:00
|
|
|
("style" "max-width: 48ch")
|
2025-06-01 12:25:33 -04:00
|
|
|
(h2
|
2025-08-05 23:50:45 -04:00
|
|
|
("class" "w_full text_center")
|
2025-06-01 12:25:33 -04:00
|
|
|
; block for title
|
|
|
|
(text "{% block title %}{% endblock %}"))
|
|
|
|
(div
|
2025-08-03 23:24:57 -04:00
|
|
|
("class" "card w_full flex flex_col gap_4 justify_center align-center")
|
2025-06-01 12:25:33 -04:00
|
|
|
; block for actual page content
|
|
|
|
(text "{% block content %}{% endblock %}"))
|
|
|
|
; small footer block (for switching context)
|
|
|
|
(text "{% block footer %}{% endblock %}"))
|
|
|
|
|
|
|
|
(text "{% endblock %}")
|