Files
packager/rust/src/components/home.rs

19 lines
370 B
Rust
Raw Normal View History

2023-05-08 22:31:01 +02:00
use maud::{html, Markup};
2023-05-08 00:05:45 +02:00
2023-08-29 21:33:59 +02:00
pub struct Home;
2023-05-08 00:05:45 +02:00
impl Home {
2023-08-29 21:33:59 +02:00
pub fn build() -> Markup {
html!(
2023-05-08 22:31:01 +02:00
div id="home" class={"p-8" "max-w-xl"} {
p {
2023-05-12 00:31:08 +02:00
a href="/inventory/" { "Inventory" }
2023-05-08 22:31:01 +02:00
}
p {
2023-05-12 00:31:08 +02:00
a href="/trips/" { "Trips" }
2023-05-08 22:31:01 +02:00
}
}
2023-08-29 21:33:59 +02:00
)
2023-05-08 00:05:45 +02:00
}
}