🎨 Reestructuración según componentes "minimal"

This commit is contained in:
Manuel Cillero 2023-05-14 18:19:57 +02:00
parent c657970b5a
commit 05d15b6648
11 changed files with 49 additions and 49 deletions

View file

@ -42,8 +42,8 @@ impl ThemeTrait for Bootsier {
pagetop_jquery::JQuery::add_jquery(page.context());
}
fn error_404_not_found(&self) -> Container {
Container::new().with_component(Html::with(html! {
fn error_404_not_found(&self) -> HtmlMarkup {
HtmlMarkup::new().with(html! {
div class="jumbotron" {
div class="media" {
img
@ -66,6 +66,6 @@ impl ThemeTrait for Bootsier {
}
}
}
}))
})
}
}