Reintroduce web response type for full pages

This commit is contained in:
Manuel Cillero 2024-11-24 09:23:24 +01:00
parent 04a365797d
commit b2b0d8bd3e
40 changed files with 1516 additions and 249 deletions

View file

@ -5,9 +5,9 @@ use tera::Tera;
use std::sync::LazyLock;
static_locales!(LOCALES_ALINER);
include_locales!(LOCALES_ALINER);
static_files!(aliner);
include_files!(aliner);
// ALINER THEME ************************************************************************************
@ -50,7 +50,7 @@ impl PackageTrait for Aliner {
}
fn configure_service(&self, scfg: &mut service::web::ServiceConfig) {
static_files_service!(scfg, aliner => "/aliner");
include_files_service!(scfg, aliner => "/aliner");
}
}