🚧 Working on actions

This commit is contained in:
Manuel Cillero 2024-03-27 07:12:42 +01:00
parent e732244a2e
commit d99a5aa586
23 changed files with 480 additions and 323 deletions

View file

@ -168,7 +168,7 @@ impl Page {
// Page RENDER.
pub fn render(&mut self) -> ResultPage<Markup, ErrorPage> {
// Theme actions before preparing the page body.
// Theme operations before preparing the page body.
self.context.theme().before_prepare_body(self);
// Packages actions before preparing the page body.
@ -177,7 +177,7 @@ impl Page {
// Prepare page body.
let body = self.context.theme().prepare_body(self);
// Theme actions after preparing the page body.
// Theme operations after preparing the page body.
self.context.theme().after_prepare_body(self);
// Packages actions after preparing the page body.