[TASK] add registration box

This commit is contained in:
Marie Birner
2025-08-24 16:26:06 +02:00
parent ce3084f5ff
commit a62ba324f2
4 changed files with 32 additions and 5 deletions

View File

@@ -32,15 +32,17 @@ pub(super) async fn index(cookies: CookieJar, headers: HeaderMap) -> Markup {
h2 { (t!("what_to_do_title")) }
div.grid.gap-lg {
article {
header { (t!("visit_booth_title")) }
div.grid.gap-lg.grid-cols-2 {
article.col-span-2 {
header { (t!("tour_aef_title")) }
(t!("visit_booth_description"))
(t!("tour_aef_description"))
a
href="https://www.jku.at/ars-electronica-2025-panic-yes-no/digital-shadows/"
target="_blank"
class="btn"
role="button"
title=(t!("jku_link_title")) { (t!("find_out_more")) }
footer { (t!("location_postcity")) }
@@ -54,6 +56,18 @@ pub(super) async fn index(cookies: CookieJar, headers: HeaderMap) -> Markup {
footer { (t!("location_linz")) }
}
article {
header { (t!("visit_booth_title")) }
(t!("visit_booth_description"))
a
href="https://www.jku.at/ars-electronica-2025-panic-yes-no/digital-shadows/"
target="_blank"
title=(t!("jku_link_title")) { (t!("find_out_more")) }
footer { (t!("location_postcity")) }
}
}
})
}