mirror of
https://github.com/Relintai/wp_saver_rcpp_fw.git
synced 2024-11-10 00:52:12 +01:00
Fix header and footer.
This commit is contained in:
parent
0b08069895
commit
446d0c13e7
@ -31,6 +31,8 @@ void WPApplication::blog_fun(Object *instance, Request *request) {
|
||||
}
|
||||
|
||||
void WPApplication::index(Request *request) {
|
||||
request->head += header;
|
||||
|
||||
HTMLBuilder b;
|
||||
|
||||
b.div("content");
|
||||
@ -46,10 +48,13 @@ void WPApplication::index(Request *request) {
|
||||
b.cdiv();
|
||||
|
||||
request->body += b.result;
|
||||
request->body += footer;
|
||||
request->compile_and_send_body();
|
||||
}
|
||||
|
||||
void WPApplication::blog(Request *request) {
|
||||
request->head += header;
|
||||
|
||||
String blog = request->get_current_path_segment();
|
||||
|
||||
Database *db = nullptr;
|
||||
@ -84,7 +89,7 @@ void WPApplication::blog(Request *request) {
|
||||
page = request->get_current_path_segment().to_int();
|
||||
} else if (action_segment == "post") {
|
||||
request->push_path();
|
||||
|
||||
|
||||
int post_id = request->get_current_path_segment().to_int();
|
||||
|
||||
PostData *p = get_post(db, post_id);
|
||||
@ -99,6 +104,7 @@ void WPApplication::blog(Request *request) {
|
||||
b.cdiv();
|
||||
|
||||
request->body += b.result;
|
||||
request->body += footer;
|
||||
request->compile_and_send_body();
|
||||
return;
|
||||
} else {
|
||||
@ -137,6 +143,7 @@ void WPApplication::blog(Request *request) {
|
||||
b.cdiv();
|
||||
|
||||
request->body += b.result;
|
||||
request->body += footer;
|
||||
request->compile_and_send_body();
|
||||
}
|
||||
|
||||
@ -261,7 +268,7 @@ void WPApplication::compile_menu() {
|
||||
bh.w("WPSaver");
|
||||
bh.ctitle();
|
||||
|
||||
bh.link()->rel_stylesheet()->href("site.css");
|
||||
bh.link()->rel_stylesheet()->href("/site.css");
|
||||
bh.write_tag();
|
||||
|
||||
header = bh.result;
|
||||
|
Loading…
Reference in New Issue
Block a user