Feat(UI): Blog with article page and Newsletter signup form.

This commit is contained in:
2025-08-09 19:07:58 +01:00
parent 2541aaf849
commit 36d9eb6888
51 changed files with 3434 additions and 892 deletions

View File

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