comparison scid/pageutil.c @ 30:43333d18e4b8

scid: document theme
author David Demelier <markand@malikania.fr>
date Thu, 04 Aug 2022 14:54:43 +0200
parents 695637f1d8a7
children 081e1c258e64
comparison
equal deleted inserted replaced
29:695637f1d8a7 30:43333d18e4b8
46 { 46 {
47 assert(req); 47 assert(req);
48 48
49 char *body; 49 char *body;
50 50
51 body = theme_page_status(scid.theme, status); 51 body = theme_page_status(status);
52 pageutil_render(req, status, KMIME_TEXT_HTML, body); 52 pageutil_render(req, status, KMIME_TEXT_HTML, body);
53 free(body); 53 free(body);
54 } 54 }
55 55
56 void 56 void