🎨 Reestructuración según componentes "minimal"
This commit is contained in:
parent
c657970b5a
commit
05d15b6648
11 changed files with 49 additions and 49 deletions
|
|
@ -14,10 +14,10 @@ repository = "https://github.com/manuelcillero/pagetop"
|
|||
license = "Apache-2.0 OR MIT"
|
||||
|
||||
[dependencies]
|
||||
pagetop = { path = "../pagetop", version = "0.0" }
|
||||
pagetop-jquery = { path = "../pagetop-jquery", version = "0.0" }
|
||||
pagetop = { version = "0.0", path = "../pagetop" }
|
||||
pagetop-jquery = { version = "0.0", path = "../pagetop-jquery" }
|
||||
static-files = "0.2.3"
|
||||
maud = "0.25.0"
|
||||
|
||||
[build-dependencies]
|
||||
pagetop-build = { path = "../pagetop-build", version = "0.0" }
|
||||
pagetop-build = { version = "0.0", path = "../pagetop-build" }
|
||||
|
|
|
|||
|
|
@ -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 {
|
|||
}
|
||||
}
|
||||
}
|
||||
}))
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue