about: move layout into page functions

Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
John Keeping
2015-08-14 12:47:12 +01:00
committed by Jason A. Donenfeld
szülő 764987980e
commit 51d9176e4b
3 fájl változott, egészen pontosan 11 új sor hozzáadva és 4 régi sor törölve

Fájl megtekintése

@@ -345,9 +345,12 @@ void cgit_print_repolist(void)
void cgit_print_site_readme(void)
{
cgit_print_layout_start();
if (!ctx.cfg.root_readme)
return;
goto done;
cgit_open_filter(ctx.cfg.about_filter, ctx.cfg.root_readme);
html_include(ctx.cfg.root_readme);
cgit_close_filter(ctx.cfg.about_filter);
done:
cgit_print_layout_end();
}