2025-06-01 12:25:33 -04:00
|
|
|
(text "{% extends \"root.html\" %} {% block body %}")
|
|
|
|
(main
|
|
|
|
("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
|
|
|
|
("class" "w-full text-center")
|
|
|
|
; block for title
|
|
|
|
(text "{% block title %}{% endblock %}"))
|
|
|
|
(div
|
|
|
|
("class" "card w-full flex flex-col gap-4 justify-center align-center")
|
|
|
|
; block for actual page content
|
|
|
|
(text "{% block content %}{% endblock %}"))
|
|
|
|
; small footer block (for switching context)
|
|
|
|
(text "{% block footer %}{% endblock %}"))
|
|
|
|
|
|
|
|
(text "{% endblock %}")
|