mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
Added more docs.
This commit is contained in:
parent
4bd9975350
commit
71f8a12997
@ -10,6 +10,13 @@
|
||||
|
||||
#include "web/http/request.h"
|
||||
|
||||
// This class will load and process all md files from the folder set to it's articles_folder property,
|
||||
// and serve every file from the directory set to it's serve_folder property.
|
||||
// if it finds a summary.md, it will serve it as the root.
|
||||
// It uses pagination.
|
||||
// THe links is generates currently look like: <url>/01_test.md
|
||||
// files are served under <url>/files/<file>
|
||||
|
||||
class PagedArticle : public WebNode {
|
||||
RCPP_OBJECT(PagedArticle, WebNode);
|
||||
|
||||
|
@ -9,7 +9,20 @@
|
||||
|
||||
#include "web/http/request.h"
|
||||
|
||||
// todo pagination
|
||||
// This class will load and process all md files from the folder set to it's folder property,
|
||||
// and generate one page from them. TThe files are processed in alphabetical order.
|
||||
|
||||
// The generated HTML looks like:
|
||||
|
||||
// render_menu()
|
||||
// <div class="article_list_entry">
|
||||
// Contents of the first md file.
|
||||
// </div>
|
||||
// <div class="article_list_entry">
|
||||
// Contents of the second md file.
|
||||
// </div>
|
||||
// ...
|
||||
// </div>
|
||||
|
||||
class PagedArticles : public WebNode {
|
||||
RCPP_OBJECT(PagedArticles, WebNode);
|
||||
|
Loading…
Reference in New Issue
Block a user