🔥 [pagetop] Saca temas y jQuery de PageTop

This commit is contained in:
Manuel Cillero 2023-02-01 20:22:50 +01:00
parent f8a4e82297
commit 80e433b20d
29 changed files with 90 additions and 330 deletions

View file

@ -16,6 +16,12 @@ license = "Apache-2.0 OR MIT"
[dependencies]
actix-web = "4.2.1"
pagetop = { path = "../pagetop", version = "0.0", features = ["mysql"], default-features = false }
# Modules.
pagetop-admin = { path = "../pagetop-admin", version = "0.0" }
pagetop-user = { path = "../pagetop-user", version = "0.0" }
pagetop-node = { path = "../pagetop-node", version = "0.0" }
# Themes.
pagetop-minimal = { path = "../pagetop-minimal", version = "0.0" }
pagetop-aliner = { path = "../pagetop-aliner", version = "0.0" }
pagetop-bootsier = { path = "../pagetop-bootsier", version = "0.0" }
pagetop-bulmix = { path = "../pagetop-bulmix", version = "0.0" }

View file

@ -11,9 +11,15 @@ impl ModuleTrait for Drust {
fn dependencies(&self) -> Vec<ModuleStaticRef> {
vec![
// Modules.
&pagetop_admin::Admin,
&pagetop_user::User,
&pagetop_node::Node,
// Themes.
&pagetop_minimal::Minimal,
&pagetop_aliner::Aliner,
&pagetop_bootsier::Bootsier,
&pagetop_bulmix::Bulmix,
]
}