You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
282 B
C

#include "layout.h"
void view_begin_layout( FILE* f, const char* title )
{
#define RENDER
#define BEGIN
#include "src/view/layout.html.inc"
#undef BEGIN
#undef RENDER
}
void view_end_layout( FILE* f )
{
#define RENDER
#include "src/view/layout.html.inc"
#undef RENDER
}