1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
pub struct User {
name: String,
}
pub struct Post {
id: u32,
title: String,
}
markup::define! {
Page<'a>(user: &'a User, posts: &'a [Post]) {
@markup::doctype()
html {
head {
title { "Hello " @user.name }
}
body {
#main.container {
@for post in *posts {
div#{format!("post-{}", post.id)}["data-id" = post.id] {
.title { @post.title }
}
}
}
@Footer { name: &user.name, year: 2020 }
}
}
}
Footer<'a>(name: &'a str, year: u32) {
"(c) " @year " " @name
}
}
fn main() {
let user = User {
name: "Ferris".into(),
};
let posts = [
Post {
id: 1,
title: "Road to Rust 1.0".into(),
},
Post {
id: 2,
title: "Stability as a Deliverable".into(),
},
Post {
id: 3,
title: "Cargo: Rust's community crate host".into(),
},
];
println!(
"{}",
Page {
user: &user,
posts: &posts
}
)
}
|