Feat(UI): Blog Home page as standalone view file.

This commit is contained in:
2025-08-09 15:06:40 +01:00
parent 77393d2057
commit 2541aaf849
23 changed files with 4054 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
// internal
import BasePage from "../base.js";
// external
export default class PageBlogArticle extends BasePage {
static hash = hashPageBlogHome;
constructor(router) {
super(router);
}
initialize() {
this.sharedInitialize();
// this.hookupButtonsNav();
}
leave() {
super.leave();
}
}

View File

@@ -0,0 +1,23 @@
// internal
import BasePage from "../base.js";
// external
export default class PageBlogHome extends BasePage {
static hash = hashPageBlogHome;
constructor(router) {
super(router);
}
initialize() {
this.sharedInitialize();
// this.hookupButtonsNav();
}
leave() {
super.leave();
}
}