A comment.

This commit is contained in:
Relintai 2022-02-04 22:03:55 +01:00
parent 60e7dfe7e9
commit 15c384750f

View File

@ -11,6 +11,7 @@
// inherit from StaticPage
// (make the module a dependency)
// Add PagedArticle as child -> rout everything to it the same way as now
// ListPage add bool -> pagination enabled
class PagedList : public WebNode {
RCPP_OBJECT(PagedList, WebNode);
@ -23,10 +24,11 @@ public:
PagedList();
~PagedList();
ListPage *main_page;
PagedArticle *articles;
String folder;
String base_path;
ListPage *main_page;
PagedArticle *articles;
};
#endif