fix: use correct class names

This commit is contained in:
trisua 2025-08-04 12:25:54 -04:00
parent e5ff863e94
commit db63427795
6 changed files with 21 additions and 21 deletions

View file

@ -15,21 +15,21 @@
(text "{% endblock %} {% block body %}")
(div
("class" "flex flex-col gap_2")
("class" "flex flex_col gap_2")
(div
("class" "card container")
("id" "content_rect")
("style" "min-height: 15rem")
(text "{{ entry.content|markdown|safe }}"))
(div
("class" "w-full flex justify_between gap_2")
("class" "w_full flex justify_between gap_2")
(a
("class" "button")
("href" "/{{ entry.slug }}/edit{% if password -%} ?key={{ password }} {%- endif %}")
(text "Edit"))
(div
("class" "flex flex-col gap-1 items-end fade")
("class" "flex flex_col gap-1 items-end fade")
; dates
(span (text "Pub: {{ entry.created / 1000|int|date(format=\"%Y-%m-%d %H:%M\", timezone=\"Etc/UTC\") }} UTC"))
(span (text "Edit: {{ entry.edited / 1000|int|date(format=\"%Y-%m-%d %H:%M\", timezone=\"Etc/UTC\") }} UTC"))