blogsite/blog/src/post_list/post2.rs

16 lines
327 B
Rust
Raw Normal View History

2025-04-05 14:14:57 +01:00
use super::Post;
use yew::html;
pub const POST: Post = Post {
title: "wowwee post 2! now a new post!",
timestamp: 1743710398,
content: || {
html! {
<div>
<p>{"hello world"}</p><br />
<p>{"this is an \"example11!!{}\""}</p>
</div>
}
},
};