16 lines
553 B
Common Lisp
16 lines
553 B
Common Lisp
(text "{% extends \"root.html\" %} {% block body %}")
|
|
(main
|
|
("class" "flex flex_col gap_2")
|
|
("style" "max-width: 48ch")
|
|
(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 %}")
|