Remove ckeditor

Remove tinymce
Begin migrate to mithril.js
This commit is contained in:
2023-02-18 07:35:06 +03:00
parent 7f4130fe19
commit 024d7fb10d
434 changed files with 822 additions and 25765 deletions

View File

@@ -0,0 +1,20 @@
function layout_decorator(controller) {
return {
render: function(vnode) {
return m(Layout, m(controller, vnode.attrs))
}
}
};
function Layout() {
return {
view: function(vnode) {
let result = [
m(MenuGeneral),
m("section", vnode.children),
m(Footer),
m(Backtotop),
];
return result;
}
}
};